メインコンテンツまでスキップ

スロー

and_throwを使用して、テストダブルが指定されたシンボルをスローすることができます。オプションで引数を指定することもできます。

  • and_throw(:symbol)
  • and_throw(:symbol, argument)

シンボルをスローする

以下の内容で "and_throw_spec.rb" という名前のファイルがあるとします。

RSpec.describe "Making it throw a symbol" do
it "throws the provided symbol" do
dbl = double
allow(dbl).to receive(:foo).and_throw(:hello)

catch :hello do
dbl.foo
fail "should not get here"
end
end

it "includes the provided argument when throwing" do
dbl = double
allow(dbl).to receive(:foo).and_throw(:hello, "world")

arg = catch :hello do
dbl.foo
fail "should not get here"
end

expect(arg).to eq("world")
end
end

rspec and_throw_spec.rb を実行すると、

すべての例がパスするはずです。