Clean up feature build flags.

This commit is contained in:
Andrés N. Robalino 2019-11-22 01:18:37 -05:00
parent 6e8b768d79
commit f4d9975dab
2 changed files with 0 additions and 19 deletions

View File

@ -1,3 +0,0 @@
[build]
rustflags = "--cfg coloring_in_tokens"

View File

@ -217,19 +217,3 @@ fn errors_fetching_by_index_out_of_bounds() {
)
})
}
#[test]
fn requires_at_least_one_column_member_path() {
Playground::setup("get_test_9", |dirs, sandbox| {
sandbox.with_files(vec![EmptyFile("andres.txt")]);
let actual = nu!(
cwd: dirs.test(), "ls | get | get type | echo $it"
);
assert_eq!(
actual,
"[row: name, type, size, created, accessed, modified]"
);
})
}