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 99c4f9d commit eceab09Copy full SHA for eceab09
.gitignore
@@ -20,3 +20,6 @@ Cargo.lock
20
**/*.rs.bk
21
22
.idea
23
+
24
+css-inline/tests/inlined.*.html
25
css-inline/tests/test_cli.rs
@@ -14,11 +14,11 @@ pub mod tests {
14
fn success() {
15
css_inline()
16
.arg("tests/example.html")
17
- .arg("--output-filename-prefix=keep-style-tags.")
+ .arg("--output-filename-prefix=inlined.keep-style-tags.")
18
.assert()
19
.success()
.stdout("tests/example.html: SUCCESS\n");
- let content = fs::read_to_string("tests/keep-style-tags.example.html").unwrap();
+ let content = fs::read_to_string("tests/inlined.keep-style-tags.example.html").unwrap();
assert_eq!(
content,
"<html><head>\n \
0 commit comments