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

Side by Side Diff: third_party/pyscss/scss/tests/test_files.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
OLDNEW
(Empty)
1 import os.path
2 import unittest
3
4 from scss import parser
5
6
7 class ScssCache(unittest.TestCase):
8
9 def test_cache(self):
10 path = os.path.join(os.path.dirname(__file__), 'example.scss')
11 src = open(path).read()
12 test = parser.parse(src)
13 out = parser.load(open(path), precache=True)
14 self.assertEqual(test, out)
OLDNEW
« no previous file with comments | « third_party/pyscss/scss/tests/test_fake.py ('k') | third_party/pyscss/scss/tests/test_font_face.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698