Last active
March 2, 2021 19:13
-
-
Save mreigen/64b076246ad0a0af75d7a00a84a166fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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