Skip to content

Commit

Permalink
Merge pull request #9 from codenoble/master
Browse files Browse the repository at this point in the history
Fix incorrectly copied description in test
  • Loading branch information
chancancode committed Dec 15, 2015
2 parents 4aa325b + c3c170b commit 8467156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/canada_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def test_respond_to?
yes = [:empty?, :empty_eh?, :respond_to?, :respond_to_eh?]
no = [:not_there, :not_there?, :not_there_eh, :not_there_eh?]

yes.each { |y| assert([].respond_to?(y), "Array should respond_to_eh? #{y}") }
no.each { |n| refute([].respond_to?(n), "Array should not respond_to_eh? #{n}") }
yes.each { |y| assert([].respond_to?(y), "Array should respond_to? #{y}") }
no.each { |n| refute([].respond_to?(n), "Array should not respond_to? #{n}") }
end

def test_aboot
Expand Down

0 comments on commit 8467156

Please sign in to comment.