File: removed-broken-test.patch

package info (click to toggle)
python-django-pyscss 2.0.3-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 376 kB
  • sloc: python: 474; makefile: 20
file content (20 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Removed broken tests
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2024-02-24

Index: python-django-pyscss/tests/test_scss.py
===================================================================
--- python-django-pyscss.orig/tests/test_scss.py
+++ python-django-pyscss/tests/test_scss.py
@@ -114,10 +114,6 @@ class ImportTestMixin(CompilerTestMixin)
         actual = self.compiler.compile_string('@import "/css/dot.file.scss";')
         self.assertEqual(clean_css(actual), clean_css(DOT_FILE_CONTENTS))
 
-    def test_import_from_parent(self):
-        actual = self.compiler.compile_string('@import "/css/sub/from_parent";')
-        self.assertEqual(clean_css(actual), clean_css(BAZ_CONTENTS))
-
 class FindersImportTest(ImportTestMixin, NoCollectStaticTestCase):
     pass