文字列に部分文字列が含まれていることを確認します。
hereに記載されている正しい構文を使用していると思いますが、うまくいきません。私は何が欠けていますか?
>> require 'rspec-expectations'
=> true
>> s = 'potato'
=> "potato"
>> s.include?('tat')
=> true
>> s.should include('tat')
TypeError: wrong argument type String (expected Module)
from (irb):4:in `include'
from (irb):4
from /usr/bin/irb:12:in `<main>'