Chciałbym użyć [1,2,3].should include(1)
w irb. Próbowałem:Jak korzystać z oczekiwań RSpec w irb
~$ irb
1.9.3p362 :001 > require 'rspec/expectations'
=> true
1.9.3p362 :002 > include RSpec::Matchers
=> Object
1.9.3p362 :003 > [1,2,3].should include(1)
TypeError: wrong argument type Fixnum (expected Module)
from (irb):3:in `include'
from (irb):3
from /home/andrey/.rvm/rubies/ruby-1.9.3-p362/bin/irb:16:in `<main>'
Ale to nie działa choć it's a valid case. Jak mogę użyć [1,2,3].should include(1)
?