1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
//! Tests auto-converted from "sass-spec/spec/css/comment.hrx"
fn runner() -> crate::TestRunner {
super::runner().with_cwd("comment")
}
mod converts_newlines {
use super::runner;
mod scss {
use super::runner;
#[test]
fn cr() {
assert_eq!(
runner().ok("/* foo\r * bar */\n"),
"/* foo\
\n * bar */\n"
);
}
#[test]
fn ff() {
assert_eq!(
runner().ok("/* foo\u{c} * bar */\n"),
"/* foo\
\n * bar */\n"
);
}
}
}
mod error {
use super::runner;
mod loud {
use super::runner;
mod interpolation {
use super::runner;
#[test]
fn failure() {
assert_eq!(
runner().err("/* #{$undefined} */\n"),
"Error: Undefined variable.\
\n ,\
\n1 | /* #{$undefined} */\
\n | ^^^^^^^^^^\
\n \'\
\n input.scss 1:6 root stylesheet",
);
}
#[test]
#[ignore] // missing error
fn unterminated() {
assert_eq!(
runner().err("/* #{broken */\n"),
"Error: Expected expression.\
\n ,\
\n1 | /* #{broken */\
\n | ^\
\n \'\
\n input.scss 1:15 root stylesheet",
);
}
}
mod unterminated {
use super::runner;
#[test]
#[ignore] // missing error
fn scss() {
assert_eq!(
runner().err(
"a {\
\n b: c /* d\
\n}\n"
),
"Error: expected more input.\
\n ,\
\n3 | }\
\n | ^\
\n \'\
\n input.scss 3:2 root stylesheet",
);
}
}
}
}
mod inline {
use super::runner;
mod loud {
use super::runner;
#[test]
fn scss() {
assert_eq!(
runner().ok("a {\
\n b: c /* d */ e;\
\n}\n"),
"a {\
\n b: c e;\
\n}\n"
);
}
}
mod silent {
use super::runner;
#[test]
fn scss() {
assert_eq!(
runner().ok("a {\
\n b: c // d\
\n}\n"),
"a {\
\n b: c;\
\n}\n"
);
}
}
}
#[test]
fn multiple() {
assert_eq!(
runner().ok(".foo {\
\n /* Foo Bar */\
\n /* Baz Bang */ }\n"),
".foo {\
\n /* Foo Bar */\
\n /* Baz Bang */\
\n}\n"
);
}
#[test]
fn multiple_stars() {
assert_eq!(
runner().ok("a /***/ b {x: y}\
\na /****/ b {x: y}\
\na /* **/ b {x: y}\
\na /** */ b {x: y}\n"),
"a b {\
\n x: y;\
\n}\
\na b {\
\n x: y;\
\n}\
\na b {\
\n x: y;\
\n}\
\na b {\
\n x: y;\
\n}\n"
);
}
mod sourcemap {
use super::runner;
#[test]
fn between_loads() {
assert_eq!(
runner().ok("@use \'sass:math\';\
\n/*# sourceMappingURL=whatever */\
\n@use \'sass:list\';\n\
\na { b: c }\n"),
"\
\na {\
\n b: c;\
\n}\n"
);
}
#[test]
fn sourcemappingurl() {
assert_eq!(
runner().ok("a { b: c }\
\n/*# sourceMappingURL=whatever */\n"),
"a {\
\n b: c;\
\n}\n"
);
}
#[test]
fn sourceurl() {
assert_eq!(
runner().ok("a { b: c }\
\n/*# sourceURL=whatever */\n"),
"a {\
\n b: c;\
\n}\n"
);
}
}
#[test]
fn weird_indentation() {
assert_eq!(
runner().ok(".foo {\
\n /* Foo\
\n Bar\
\nBaz */\
\n a: b; }\n"),
".foo {\
\n /* Foo\
\n Bar\
\n Baz */\
\n a: b;\
\n}\n"
);
}