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) |