typos/crates/typos-cli/tests/cmd/file-list-stdin.toml

23 lines
284 B
TOML
Raw Normal View History

2023-04-06 19:39:21 -04:00
bin.name = "typos"
2024-02-07 17:06:19 -05:00
args = "--sort --file-list -"
2023-04-06 19:39:21 -04:00
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