Files
deb-python-lesscpy/test/test_bootstrap3.py
Sascha Peilicke 28c31a913f Drop '__main__' from tests
Direct test invocation doesn't work reliably across all environments.
Using 'nosetests $FILE' is much more efficient.
2014-02-02 18:30:28 +01:00

27 lines
623 B
Python

"""
lesscpy bootstrap3 tests.
"""
import unittest
from test.core import find_and_load_cases
@unittest.skip("Minor semantic issues left")
class Bootstrap3TestCase(unittest.TestCase):
pass
class Bootstrap3ThemeTestCase(unittest.TestCase):
pass
find_and_load_cases(Bootstrap3TestCase,
less_dir='bootstrap3/less',
less_files=['bootstrap'],
css_dir='bootstrap3/css')
find_and_load_cases(Bootstrap3ThemeTestCase,
less_dir='bootstrap3/less',
less_files=['theme'],
css_dir='bootstrap3/css')