mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-12 18:00:45 +01:00
10 lines
256 B
Python
10 lines
256 B
Python
# import all test_*.py files in directory.
|
|
# neccessary for automatic discovery in django <= 1.5
|
|
# http://stackoverflow.com/a/15780326/1382740
|
|
|
|
import unittest
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().discover("helpdesk.tests", pattern="test_*.py")
|