Files
deb-python-lesscpy/test/test_less.py
Sascha Peilicke 4a7aaa6ce5 Refactor testsuite invocation
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).
2014-02-02 18:01:40 +01:00

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()