Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Side by Side Diff: third_party/pyscss/scss/tests/__init__.py

Issue 9111023: Pyscss is obsolete with Dart CSS complier; remove all pyscss code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove pyparsing from .gitignore Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/pyscss/scss/parser.py ('k') | third_party/pyscss/scss/tests/bag2_64.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import unittest
2
3
4 def all_tests_suite():
5 return unittest.TestLoader().loadTestsFromNames([
6 # 'scss.tests.test_fake',
7 'scss.tests.test_variables',
8 'scss.tests.test_nesting',
9 'scss.tests.test_font_face',
10 'scss.tests.test_functions',
11 'scss.tests.test_options',
12 'scss.tests.test_extend',
13 'scss.tests.test_mixin',
14 'scss.tests.test_if',
15 'scss.tests.test_for',
16 'scss.tests.test_scss',
17 'scss.tests.test_files',
18 ])
19
20
21 def main():
22 runner = unittest.TextTestRunner()
23 suite = all_tests_suite()
24 runner.run(suite)
25
26
27 if __name__ == '__main__':
28 import os.path
29 import sys
30 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.dirname(os.path.a bspath(__file__)))))
31 main()
OLDNEW
« no previous file with comments | « third_party/pyscss/scss/parser.py ('k') | third_party/pyscss/scss/tests/bag2_64.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698