Skip to content

Commit 506f09e

Browse files
committed
libsass 3.2.0-beta.3
1 parent 0ff0e0e commit 506f09e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

sasstests.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,9 @@ def test_raises(self):
10091009
r' Backtrace:\n'
10101010
r' \tstdin:0, in function `raises`\n'
10111011
r' \tstdin:0\n'
1012-
r' on line 1 of stdin\n$'
1012+
r' on line 1 of stdin\n'
1013+
r'>> a { content: raises\(\); }\n'
1014+
r' -------------\^\n$'
10131015
)):
10141016
compile_with_func('a { content: raises(); }')
10151017

@@ -1021,6 +1023,8 @@ def test_warning(self):
10211023
' \tstdin:0, in function `returns-warning`\n'
10221024
' \tstdin:0\n'
10231025
' on line 1 of stdin\n'
1026+
'>> a { content: returns_warning(); }\n'
1027+
' -------------^\n'
10241028
):
10251029
compile_with_func('a { content: returns_warning(); }')
10261030

@@ -1031,6 +1035,8 @@ def test_error(self):
10311035
' \tstdin:0, in function `returns-error`\n'
10321036
' \tstdin:0\n'
10331037
' on line 1 of stdin\n'
1038+
'>> a { content: returns_error(); }\n'
1039+
' -------------^\n'
10341040
):
10351041
compile_with_func('a { content: returns_error(); }')
10361042

@@ -1053,6 +1059,8 @@ def test_returns_unknown_object(self):
10531059
' \tstdin:0, in function `returns-unknown`\n'
10541060
' \tstdin:0\n'
10551061
' on line 1 of stdin\n'
1062+
'>> a { content: returns_unknown(); }\n'
1063+
' -------------^\n'
10561064
):
10571065
compile_with_func('a { content: returns_unknown(); }')
10581066

0 commit comments

Comments
 (0)