typos/crates/typos-cli/tests/cmd/file-list-stdin.toml
2024-02-07 16:06:19 -06:00

22 lines
284 B
TOML

bin.name = "typos"
args = "--sort --file-list -"
stdin = """
b.fail
d.fail
"""
stdout = """
error: `hello` should be `goodbye`
--> b.fail:1:1
|
1 | hello
| ^^^^^
|
error: `hello` should be `goodbye`
--> d.fail:1:1
|
1 | hello
| ^^^^^
|
"""
stderr = ""
status.code = 2