diff options
author | Johan Dahlin <johan@src.gnome.org> | 2006-08-07 18:55:01 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2006-08-07 18:55:01 +0000 |
commit | 01cfc73a95211bf057f0b1fecf8c0c5dafef9205 (patch) | |
tree | 7a09a0c86138c41283ce6c7e0b44fa74e25c8ba7 /tests | |
parent | f7721b92379c082c09e5879da1fdfbf072b936a5 (diff) | |
download | pygtk-01cfc73a95211bf057f0b1fecf8c0c5dafef9205.tar.gz |
Enable cursor/gtk.TreePath test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 7 | ||||
-rw-r--r-- | tests/test_treeview.py | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 9724d474..5c259064 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,17 +1,20 @@ EXTRA_DIST = $(tests) common.py runtests.py testmodule.py leak.glade tests = \ + test_actiongroup.py \ test_api.py \ - test_glade.py \ + test_container.py test_conversion.py \ test_dialog.py \ test_enum.py \ test_gdk.py \ + test_glade.py \ + test_liststore.py test_pango.py \ test_radiobutton.py \ test_style.py \ test_textview.py \ - test_container.py + test_treeview.py GTK_PY_FILES = __init__.py _lazyutils.py compat.py deprecation.py keysyms.py diff --git a/tests/test_treeview.py b/tests/test_treeview.py index 4a910c16..05fd415a 100644 --- a/tests/test_treeview.py +++ b/tests/test_treeview.py @@ -4,7 +4,7 @@ from common import gtk class TreeViewTest(unittest.TestCase): # Check for #350252 - def _test_default_attributes(self): + def test_default_attributes(self): model = gtk.ListStore(str) treeview = gtk.TreeView(model) treeview.set_cursor(1) |