Index: third_party/pyscss/scss/tests/__init__.py |
diff --git a/third_party/pyscss/scss/tests/__init__.py b/third_party/pyscss/scss/tests/__init__.py |
deleted file mode 100644 |
index 06208807fe8ce543c59def7a58c5a100b38e6cdb..0000000000000000000000000000000000000000 |
--- a/third_party/pyscss/scss/tests/__init__.py |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-import unittest |
- |
- |
-def all_tests_suite(): |
- return unittest.TestLoader().loadTestsFromNames([ |
- # 'scss.tests.test_fake', |
- 'scss.tests.test_variables', |
- 'scss.tests.test_nesting', |
- 'scss.tests.test_font_face', |
- 'scss.tests.test_functions', |
- 'scss.tests.test_options', |
- 'scss.tests.test_extend', |
- 'scss.tests.test_mixin', |
- 'scss.tests.test_if', |
- 'scss.tests.test_for', |
- 'scss.tests.test_scss', |
- 'scss.tests.test_files', |
- ]) |
- |
- |
-def main(): |
- runner = unittest.TextTestRunner() |
- suite = all_tests_suite() |
- runner.run(suite) |
- |
- |
-if __name__ == '__main__': |
- import os.path |
- import sys |
- sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) |
- main() |