summaryrefslogtreecommitdiffstats
path: root/tests/test_textview.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2006-01-09 12:26:46 +0000
committerJohan Dahlin <johan@src.gnome.org>2006-01-09 12:26:46 +0000
commit551a38178f7e66f215980fb01200472c8e6d3cd4 (patch)
treefbbfd2556f77dc9f64c5c92af76a7dc35930f859 /tests/test_textview.py
parent0b07af909c44f27368a13ecfa94bfda5762e58fb (diff)
downloadpygobject-551a38178f7e66f215980fb01200472c8e6d3cd4.tar.gz
pygobject-551a38178f7e66f215980fb01200472c8e6d3cd4.tar.xz
pygobject-551a38178f7e66f215980fb01200472c8e6d3cd4.zip
Split out PyGObject from PyGTK.
Diffstat (limited to 'tests/test_textview.py')
-rw-r--r--tests/test_textview.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test_textview.py b/tests/test_textview.py
deleted file mode 100644
index 5022fda..0000000
--- a/tests/test_textview.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import sys
-import unittest
-
-from common import gtk
-
-class TextViewTest(unittest.TestCase):
- def test_default_attributes(self):
- textview = gtk.TextView()
- attrs = textview.get_default_attributes()
- textview.destroy()
- self.assertEqual(attrs.font_scale, 1.0)
-
-if __name__ == '__main__':
- unittest.main()