mirror of
https://github.com/nushell/nushell.git
synced 2025-08-14 12:19:02 +02:00
Remove with-symlink-targets
flag from ls
(#2334)
* Remove `with-symlink-targets` flag from `ls` * Fix test to use `ls -l` to output all the columns of `ls` * Fix error message * Delete test that originally covered `ls -w`
This commit is contained in:
@ -173,13 +173,6 @@ fn list_all_columns() {
|
||||
);
|
||||
let expected = ["name", "type", "size", "modified"].join("");
|
||||
assert_eq!(actual.out, expected, "column names are incorrect for ls");
|
||||
// Symbolic Links
|
||||
let actual = nu!(
|
||||
cwd: dirs.test(),
|
||||
"ls -w | get | to md"
|
||||
);
|
||||
let expected = ["name", "type", "target", "size", "modified"].join("");
|
||||
assert_eq!(actual.out, expected, "column names are incorrect for ls -w");
|
||||
// Long
|
||||
let actual = nu!(
|
||||
cwd: dirs.test(),
|
||||
|
Reference in New Issue
Block a user