We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d9a791 commit 1912991Copy full SHA for 1912991
1 file changed
exercises/concept/last-will/last_will_test.rb
@@ -20,7 +20,7 @@ def test_family_secrets_unaltered
20
21
def test_account_number_assembly_method_in_correct_namespace
22
#skip
23
- assert ::EstateExecutor.include?(assemble_account_number)
+ assert ::EstateExecutor.respond_to?(:assemble_account_number)
24
end
25
26
def test_account_number_assembly_method_works
@@ -31,7 +31,7 @@ def test_account_number_assembly_method_works
31
32
def test_code_fragment_number_assembly_method_in_correct_namespace
33
34
- assert ::EstateExecutor.include?(assemble_code)
+ assert ::EstateExecutor.respond_to?(:assemble_code)
35
36
37
def test_code_fragments_fit
0 commit comments