mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 14:15:53 +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,37 +1,22 @@
|
||||
use nu_test_support::{nu, pipeline};
|
||||
use nu_test_support::nu;
|
||||
|
||||
#[test]
|
||||
fn row() {
|
||||
let actual = nu!(
|
||||
cwd: ".", pipeline(
|
||||
r#"
|
||||
[[key value]; [foo 1] [foo 2]] | transpose -r | debug
|
||||
"#
|
||||
));
|
||||
let actual = nu!("[[key value]; [foo 1] [foo 2]] | transpose -r | debug");
|
||||
|
||||
assert!(actual.out.contains("foo: 1"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn row_but_last() {
|
||||
let actual = nu!(
|
||||
cwd: ".", pipeline(
|
||||
r#"
|
||||
[[key value]; [foo 1] [foo 2]] | transpose -r -l | debug
|
||||
"#
|
||||
));
|
||||
let actual = nu!("[[key value]; [foo 1] [foo 2]] | transpose -r -l | debug");
|
||||
|
||||
assert!(actual.out.contains("foo: 2"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn row_but_all() {
|
||||
let actual = nu!(
|
||||
cwd: ".", pipeline(
|
||||
r#"
|
||||
[[key value]; [foo 1] [foo 2]] | transpose -r -a | debug
|
||||
"#
|
||||
));
|
||||
let actual = nu!("[[key value]; [foo 1] [foo 2]] | transpose -r -a | debug");
|
||||
|
||||
assert!(actual.out.contains("foo: [1, 2]"));
|
||||
}
|
||||
|
Reference in New Issue
Block a user