source: djangobb/djangobb_forum/tests/__init__.py @ 211:fd81e8a20369

Last change on this file since 211:fd81e8a20369 was 211:fd81e8a20369, checked in by slav0nic <slav0nic0@…>, 3 years ago

main app moved from apps/forum to djangobb_forum. Warning: you must renaming DB tables prefix!

File size: 303 bytes
Line 
1"""
2The root of forum tests.
3"""
4import unittest
5
6from djangobb_forum.tests.postmarkup import PostmarkupTestCase
7
8def suite():
9    cases = (PostmarkupTestCase,
10            )
11    tests = unittest.TestSuite(
12        unittest.TestLoader().loadTestsFromTestCase(x)\
13        for x in cases)
14    return tests
Note: See TracBrowser for help on using the repository browser.