just/tests/byte_order_mark.rs

53 lines
873 B
Rust
Raw Normal View History

use crate::common::*;
#[test]
fn ignore_leading_byte_order_mark() {
Test::new()
.justfile(
"
\u{feff}foo:
echo bar
",
)
.stderr("echo bar\n")
.stdout("bar\n")
.run();
}
#[test]
fn non_leading_byte_order_mark_produces_error() {
Test::new()
.justfile(
"
foo:
echo bar
\u{feff}
",
)
.stderr(
"
error: Expected \'@\', comment, end of file, end of line, or identifier, but found byte order mark
|
3 | \u{feff}
| ^
")
.status(EXIT_FAILURE)
.run();
}
#[test]
fn dont_mention_byte_order_mark_in_errors() {
Test::new()
.justfile("{")
.stderr(
"
error: Expected '@', comment, end of file, end of line, or identifier, but found '{'
|
1 | {
| ^
",
)
.status(EXIT_FAILURE)
.run();
}