~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to pybb/tests/__init__.py

  • Committer: franku
  • Date: 2016-12-13 18:28:51 UTC
  • mto: This revision was merged to the branch mainline in revision 443.
  • Revision ID: somal@arcor.de-20161213182851-bo5ebf8pdvw5beua
run the script

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""
2
 
The root of pybb tests.
3
 
"""
 
1
"""The root of pybb tests."""
4
2
import unittest
5
3
 
6
4
from pybb.tests.postmarkup import PostmarkupTestCase
7
5
 
 
6
 
8
7
def suite():
9
8
    cases = (PostmarkupTestCase,
10
 
            )
 
9
             )
11
10
    tests = unittest.TestSuite(
12
 
        unittest.TestLoader().loadTestsFromTestCase(x)\
 
11
        unittest.TestLoader().loadTestsFromTestCase(x)
13
12
        for x in cases)
14
13
    return tests