none.toml 742 B

123456789101112131415161718192021222324252627
  1. # These tests are meant to be run against an exa binary compiled with
  2. # `--no-default-features`. They will fail otherwise.
  3. [[cmd]]
  4. name = "The missing features are documented in the version"
  5. shell = "exa --version"
  6. stdout = { string = "[-git]" }
  7. stderr = { empty = true }
  8. status = 0
  9. tags = [ 'features' ]
  10. [[cmd]]
  11. name = "The ‘--git’ option is not accepted when the feature is disabled"
  12. shell = "exa --git"
  13. stdout = { empty = true }
  14. stderr = { file = "outputs/disabled_git.txt" }
  15. status = 3
  16. tags = [ 'features' ]
  17. [[cmd]]
  18. name = "The ‘--git-ignore option is not accepted when the feature is disabled"
  19. shell = "exa --git-ignore"
  20. stdout = { empty = true }
  21. stderr = { file = "outputs/disabled_git.txt" }
  22. status = 3
  23. tags = [ 'features' ]