1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
# 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' ]
|