mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 14:23:09 +00:00
17 lines
458 B
Python
17 lines
458 B
Python
|
|
from __future__ import print_function
|
||
|
|
|
||
|
|
__title__ = 'fobi.test'
|
||
|
|
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
|
||
|
|
__copyright__ = 'Copyright (c) 2014 Artur Barseghyan'
|
||
|
|
__license__ = 'GPL 2.0/LGPL 2.1'
|
||
|
|
|
||
|
|
import unittest
|
||
|
|
|
||
|
|
from fobi.tests.test_browser_build_dynamic_forms import *
|
||
|
|
from fobi.tests.test_core import *
|
||
|
|
from fobi.tests.test_dynamic_forms import *
|
||
|
|
from fobi.tests.test_sortable_dict import *
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
unittest.main()
|