summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests/test_storage.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/staticfiles_tests/test_storage.py')
-rw-r--r--tests/staticfiles_tests/test_storage.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/staticfiles_tests/test_storage.py b/tests/staticfiles_tests/test_storage.py
index 38c34c3f66..3783d32872 100644
--- a/tests/staticfiles_tests/test_storage.py
+++ b/tests/staticfiles_tests/test_storage.py
@@ -237,7 +237,19 @@ class TestHashedFiles:
self.assertEqual(relpath, "cached/source_map.b2fceaf426aa.css")
with storage.staticfiles_storage.open(relpath) as relfile:
content = relfile.read()
- self.assertNotIn(b"/*# sourceMappingURL=source_map.css.map */", content)
+ self.assertNotIn(b"/*# sourceMappingURL=source_map.css.map*/", content)
+ self.assertIn(
+ b"/*# sourceMappingURL=source_map.css.99914b932bd3.map */",
+ content,
+ )
+ self.assertPostCondition()
+
+ def test_css_source_map_tabs(self):
+ relpath = self.hashed_file_path("cached/source_map_tabs.css")
+ self.assertEqual(relpath, "cached/source_map_tabs.b2fceaf426aa.css")
+ with storage.staticfiles_storage.open(relpath) as relfile:
+ content = relfile.read()
+ self.assertNotIn(b"/*#\tsourceMappingURL=source_map.css.map\t*/", content)
self.assertIn(
b"/*# sourceMappingURL=source_map.css.99914b932bd3.map */",
content,