Direct test invocation doesn't work reliably across all environments. Using 'nosetests $FILE' is much more efficient.
16 lines
249 B
Python
16 lines
249 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')
|