You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/pkg/omf/spec/basic_spec.fish

16 lines
276 B
Fish

function describe_basic_tests
function before_all
set -gx CI WORKAROUND
end
function it_has_a_help_command
set -l output (omf help)
assert 0 = $status
end
function it_has_a_doctor_command
set -l output (omf doctor)
assert 0 = $status
end
end