Skip to content

Instantly share code, notes, and snippets.

@mreigen
Last active March 2, 2021 19:13
Show Gist options
  • Save mreigen/64b076246ad0a0af75d7a00a84a166fe to your computer and use it in GitHub Desktop.
Save mreigen/64b076246ad0a0af75d7a00a84a166fe to your computer and use it in GitHub Desktop.
describe "make COLD dishes when seasoning available" do
setup [:setup_cold_dish, :set_seasoning]
test "", context do
assert add_seasoning
end
end
describe "make COLD dishes when extra protein available" do
setup [:setup_cold_dish, :set_protein]
test "", context do
assert add_protein
end
end
describe "make HOT dishes when microwave available" do
setup [:setup_hot_dish, :set_microwave]
test "", context do
assert use_microwave
end
end
describe "make HOT dishes when stove top available" do
setup [:setup_hot_dish, :set_stove_top]
test "", context do
assert use_stove_top
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment