私は RubyKoans.com に取り組んでいてabout_symbols.rb
、この koan に行き詰まりました。
これがテストです: 括弧内に何かを入れることになっていると思いますassert_raise()
が、わかりません:
def test_symbols_cannot_be_concatenated
# Exceptions will be pondered further father down the path
assert_raise(___) do
:cats + :dogs
end
end
これはターミナルのヒントです:
The answers you seek...
[FillMeInError] exception expected, not Class: <NoMethodError> Message: <"undefined method `+' for :cats:Symbol"> ---Backtrace--- /Users/mm/Sites/koans/about_symbols.rb:89:in `block in test_symbols_cannot_be_concatenated' ---------------