mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-11 07:10:56 +00:00
32 lines
673 B
TOML
32 lines
673 B
TOML
|
# file name tests
|
|||
|
|
|||
|
[[cmd]]
|
|||
|
name = "‘exa -T’ produces a tree of file names"
|
|||
|
shell = "exa -T /testcases/file-names"
|
|||
|
stdout = { file = "outputs/names_tree.ansitxt" }
|
|||
|
stderr = { empty = true }
|
|||
|
status = 0
|
|||
|
tags = [ 'tree' ]
|
|||
|
|
|||
|
|
|||
|
# symlinks tests
|
|||
|
|
|||
|
[[cmd]]
|
|||
|
name = "‘exa -T’ lists the destination of symlinks"
|
|||
|
shell = "exa -T /testcases/links"
|
|||
|
stdout = { file = "outputs/links_tree.ansitxt" }
|
|||
|
stderr = { empty = true }
|
|||
|
status = 0
|
|||
|
tags = [ 'tree' ]
|
|||
|
|
|||
|
|
|||
|
# permission errors tests
|
|||
|
|
|||
|
[[cmd]]
|
|||
|
name = "‘exa -T’ displays an inaccessible directory"
|
|||
|
shell = "exa -T /proc/1/root"
|
|||
|
stdout = { file = "outputs/proc_1_root.ansitxt" }
|
|||
|
stderr = { empty = true }
|
|||
|
status = 0
|
|||
|
tags = [ 'tree' ]
|