just/tests/quote.rs

44 lines
634 B
Rust
Raw Permalink Normal View History

use super::*;
#[test]
fn single_quotes_are_prepended_and_appended() {
Test::new()
.justfile(
"
x := quote('abc')
",
)
2023-01-03 22:31:56 -08:00
.args(["--evaluate", "x"])
.stdout("'abc'")
.run();
}
#[test]
fn quotes_are_escaped() {
Test::new()
.justfile(
r#"
x := quote("'")
"#,
)
2023-01-03 22:31:56 -08:00
.args(["--evaluate", "x"])
.stdout(r"''\'''")
.run();
}
#[test]
fn quoted_strings_can_be_used_as_arguments() {
Test::new()
.justfile(
r#"
file := quote("foo ' bar")
@foo:
touch {{ file }}
ls -1
"#,
)
.stdout("foo ' bar\njustfile\n")
.run();
}