mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 17:25:15 +02:00
Slim down tests (#9021)
This PR just tidies up some tests by removing unused code: 1. If the filesystem is not touched, don't use the filesystem playground/sandbox 2. If the filesystem is not touched, don't specify the `cwd` 3. If the command is short, don't bother wrapping it in `pipeline()` 4. If the command doesn't have quotes, don't bother with a `r#"..."#` raw string Part of #8670.
This commit is contained in:
@ -1,25 +1,15 @@
|
||||
use nu_test_support::{nu, pipeline};
|
||||
use nu_test_support::nu;
|
||||
|
||||
#[test]
|
||||
fn float_in_seq_leads_to_lists_of_floats() {
|
||||
let actual = nu!(
|
||||
cwd: "tests/fixtures/formats", pipeline(
|
||||
r#"
|
||||
seq 1.0 0.5 6 | describe
|
||||
"#
|
||||
));
|
||||
let actual = nu!("seq 1.0 0.5 6 | describe");
|
||||
|
||||
assert_eq!(actual.out, "list<float> (stream)");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn ints_in_seq_leads_to_lists_of_ints() {
|
||||
let actual = nu!(
|
||||
cwd: "tests/fixtures/formats", pipeline(
|
||||
r#"
|
||||
seq 1 2 6 | describe
|
||||
"#
|
||||
));
|
||||
let actual = nu!("seq 1 2 6 | describe");
|
||||
|
||||
assert_eq!(actual.out, "list<int> (stream)");
|
||||
}
|
||||
|
Reference in New Issue
Block a user