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