tree-view.toml 673 B

12345678910111213141516171819202122232425262728293031
  1. # file name tests
  2. [[cmd]]
  3. name = "‘exa -T’ produces a tree of file names"
  4. shell = "exa -T /testcases/file-names"
  5. stdout = { file = "outputs/names_tree.ansitxt" }
  6. stderr = { empty = true }
  7. status = 0
  8. tags = [ 'tree' ]
  9. # symlinks tests
  10. [[cmd]]
  11. name = "‘exa -T’ lists the destination of symlinks"
  12. shell = "exa -T /testcases/links"
  13. stdout = { file = "outputs/links_tree.ansitxt" }
  14. stderr = { empty = true }
  15. status = 0
  16. tags = [ 'tree' ]
  17. # permission errors tests
  18. [[cmd]]
  19. name = "‘exa -T’ displays an inaccessible directory"
  20. shell = "exa -T /proc/1/root"
  21. stdout = { file = "outputs/proc_1_root.ansitxt" }
  22. stderr = { empty = true }
  23. status = 0
  24. tags = [ 'tree' ]