Files
deb-python-lesscpy/test/testscope.py
Sascha Peilicke a556030931 Move tests to root dir
In essence, tests are not an importable submodule anymore but an
independent piece of code that won't be installed in a user's
site-packages directory.
2014-02-02 13:28:58 +01:00

13 lines
249 B
Python

import unittest
if __name__ == '__main__':
import bootstrap
from lesscpy.lessc.scope import Scope
from lesscpy.plib.identifier import Identifier
class TestIdentifier(unittest.TestCase):
pass
if __name__ == '__main__':
unittest.main()