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/plugins/fish-spec/spec/expect.to_contain_all.spec....

54 lines
1.2 KiB
Fish

import plugins/fish-spec
function describe_expect_to_contain_all
function it_returns_0_when_lists_are_the_same
expect 1 2 --to-contain-all 1 2
expect $status --to-equal 0
end
function it_returns_1_when_lists_are_different
expect 1 2 --to-contain-all 8 9
expect $status --to-equal 1
end
function it_returns_0_when_lists_have_the_same_item_but_in_different_order
expect 1 2 --to-contain-all 2 1
expect $status --to-equal 0
end
function it_returns_0_when_expected_list_contains_the_item
expect 1 2 --to-contain-all 1
expect $status --to-equal 0
end
function it_returns_1_when_expected_list_does_not_contain_the_item
expect 1 2 --to-contain-all 9
expect $status --to-equal 1
end
function it_returns_0_when_expected_list_contains_all_items
expect 1 2 3 --to-contain-all 1 2
expect $status --to-equal 0
end
function it_returns_1_when_expected_list_does_not_contain_all_items
expect 1 2 3 --to-contain-all 1 2 9
expect $status --to-equal 1
end
function it_returns_1_when_expected_list_contains_less_items
expect 1 2 --to-contain-all 1 2 9
expect $status --to-equal 1
end
end
spec.run $argv