mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-19 09:25:28 +00:00
23 lines
436 B
Fish
23 lines
436 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
|
|
|
|
function it_install_packages
|
|
set -l remove_output (omf remove apt ^/dev/null)
|
|
set -l install_output (omf install apt)
|
|
|
|
assert 0 = $status
|
|
end
|
|
end
|