cli: ⬆️ rsass
This commit is contained in:
parent
db953312b8
commit
d19c875134
3 changed files with 26 additions and 4 deletions
|
|
@ -889,6 +889,28 @@ mod tests {
|
|||
),
|
||||
])
|
||||
);
|
||||
|
||||
// Handle differently-formatted calls
|
||||
let sheet2 = generate_property_sheet(
|
||||
"foo.css",
|
||||
"
|
||||
a {
|
||||
b: f();
|
||||
c: f(
|
||||
g(h),
|
||||
i,
|
||||
\"j\",
|
||||
10
|
||||
);
|
||||
}
|
||||
",
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
assert_eq!(
|
||||
query_simple(&sheet2, vec!["a"])["c"],
|
||||
query_simple(&sheet, vec!["a"])["c"]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue