diff --git a/exercises/concept/pacman-rules/test/rules_test.exs b/exercises/concept/pacman-rules/test/rules_test.exs index 91a871b178..0289165ee0 100644 --- a/exercises/concept/pacman-rules/test/rules_test.exs +++ b/exercises/concept/pacman-rules/test/rules_test.exs @@ -52,9 +52,14 @@ defmodule RulesTest do end @tag task_id: 3 - test "don't lose if not touching a ghost" do + test "don't lose if not touching a ghost with a power pellet active" do refute Rules.lose?(true, false) end + + @tag task_id: 3 + test "don't lose if not touching a ghost without a power pellet active" do + refute Rules.lose?(false, false) + end end describe "win?/3" do