none.toml 777 B

123456789101112131415161718192021222324252627
  1. # These tests are meant to be run against a dog 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 = "dog --version"
  6. stdout = { string = "[-idna, -tls, -https]" }
  7. stderr = { empty = true }
  8. status = 0
  9. tags = [ 'features' ]
  10. [[cmd]]
  11. name = "The ‘--tls’ option is not accepted when the feature is disabled"
  12. shell = "dog --tls a.b.c.d"
  13. stdout = { empty = true }
  14. stderr = { file = "outputs/disabled_tls.txt" }
  15. status = 3
  16. tags = [ 'features' ]
  17. [[cmd]]
  18. name = "The ‘--https option is not accepted when the feature is disabled"
  19. shell = "dog --https a.b.c.d @name.server"
  20. stdout = { empty = true }
  21. stderr = { file = "outputs/disabled_https.txt" }
  22. status = 3
  23. tags = [ 'features' ]