We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a3b66d commit 5902c07Copy full SHA for 5902c07
sasstests.py
@@ -256,6 +256,11 @@ def test_compile_string(self):
256
self.assertRaises(TypeError, sass.compile, string=1234)
257
self.assertRaises(TypeError, sass.compile, string=[])
258
259
+ def test_compile_string_sass_style(self):
260
+ actual = sass.compile(string='a\n\tb\n\t\tcolor: blue;',
261
+ indented=True)
262
+ assert actual == 'a b {\n color: blue; }\n'
263
+
264
def test_compile_string_deprecated_source_comments_line_numbers(self):
265
source = '''a {
266
b { color: blue; }
0 commit comments