# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1242204975 -7200 # Wed May 13 10:56:15 2009 +0200 # Node ID d21e29c24ac16d646549440d7b06928f531a4e01 # Parent fcb72a11ac17458e66b493b0ad858b16aa2cafcd auto-test diff --git a/test/test_comment.py b/test/test_comment.py new file mode 100644 --- /dev/null +++ b/test/test_comment.py @@ -0,0 +1,13 @@ +from logilab.common.testlib import unittest_main +from cubicweb.devtools.testlib import AutomaticWebTest + +class AutomaticWebTest(AutomaticWebTest): + + def to_test_etypes(self): + return set(('Comment',)) + + def list_startup_views(self): + return () + +if __name__ == '__main__': + unittest_main()