mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 08:23:24 +01:00
9 lines
203 B
Rust
9 lines
203 B
Rust
|
use nu_test_support::nu;
|
||
|
|
||
|
#[test]
|
||
|
fn fails_when_output_format_contains_time() {
|
||
|
let actual = nu!("seq date --output-format '%H-%M-%S'");
|
||
|
|
||
|
assert!(actual.err.contains("Invalid output format"));
|
||
|
}
|