|
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 | """ |
|---|
| 2 | The root of forum tests. |
|---|
| 3 | """ |
|---|
| 4 | import unittest |
|---|
| 5 | |
|---|
| 6 | from djangobb_forum.tests.postmarkup import PostmarkupTestCase |
|---|
| 7 | |
|---|
| 8 | def 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.