diff --git a/test/test_comment.py b/test/test_comment.py new file mode 100644 index 0000000000000000000000000000000000000000..d21e29c24ac16d646549440d7b06928f531a4e01_dGVzdC90ZXN0X2NvbW1lbnQucHk= --- /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()