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

Unified Diff: third_party/pyscss/scss/tests/test_extend.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, 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pyscss/scss/tests/test.png ('k') | third_party/pyscss/scss/tests/test_fake.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pyscss/scss/tests/test_extend.py
diff --git a/third_party/pyscss/scss/tests/test_extend.py b/third_party/pyscss/scss/tests/test_extend.py
deleted file mode 100644
index f98814313377498a2157ae7f588d7a35308d8132..0000000000000000000000000000000000000000
--- a/third_party/pyscss/scss/tests/test_extend.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import unittest
-
-from scss.parser import Stylesheet
-
-
-class TestSCSS( unittest.TestCase ):
-
- def setUp(self):
- self.parser = Stylesheet(options=dict(compress=True))
-
- def test_extend(self):
- src = """
- .error {
- border: 1px #f00;
- background-color: #fdd;
- }
- .error .intrusion {
- background-image: url("/image/hacked.png");
- }
- .seriousError {
- @extend .error;
- border-width: 3px;
- }
- """
- test = ".error, .seriousError{border:1px #f00;background-color:#fdd}.error .intrusion, .seriousError .intrusion{background-image:url('/image/hacked.png')}.seriousError{border-width:3px}"
- out = self.parser.loads(src)
- self.assertEqual(test, out)
« no previous file with comments | « third_party/pyscss/scss/tests/test.png ('k') | third_party/pyscss/scss/tests/test_fake.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698