Move shared parts into test.core and use it in LESS, issues and bootstrap3 auto-generated tests. This simplifies the test code and allows to use nosetests (or any other test runner).
19 lines
297 B
Python
19 lines
297 B
Python
"""
|
|
lesscpy LESS tests.
|
|
"""
|
|
import unittest
|
|
|
|
from test.core import find_and_load_cases
|
|
|
|
|
|
class LessTestCase(unittest.TestCase):
|
|
pass
|
|
|
|
|
|
find_and_load_cases(LessTestCase,
|
|
less_dir='less',
|
|
css_dir='css')
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|