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

rspecを使ったモック

RSpecはデフォルトで独自のモックフレームワークを使用します。必要に応じて明示的に設定することもできます。

メッセージの期待値を満たす場合

次の内容で「example_spec.rb」という名前のファイルを作成します。

RSpec.configure do |config|
config.mock_with :rspec
end

RSpec.describe "mocking with RSpec" do
it "passes when it should" do
receiver = double('receiver')
expect(receiver).to receive(:message)
receiver.message
end
end

rspec example_spec.rbを実行すると、

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

メッセージの期待値を満たさない場合

次の内容で「example_spec.rb」という名前のファイルを作成します。

RSpec.configure do |config|
config.mock_with :rspec
end

RSpec.describe "mocking with RSpec" do
it "fails when it should" do
receiver = double('receiver')
expect(receiver).to receive(:message)
end
end

rspec example_spec.rbを実行すると、

出力には「1 example, 1 failure」という文字列が含まれるはずです。

保留中の例でメッセージの期待値を満たさない場合(保留のまま)

次の内容で「example_spec.rb」という名前のファイルを作成します。

RSpec.configure do |config|
config.mock_with :rspec
end

RSpec.describe "failed message expectation in a pending example" do
it "is listed as pending" do
pending
receiver = double('receiver')
expect(receiver).to receive(:message)
end
end

rspec example_spec.rbを実行すると、

出力には「1 example, 0 failures, 1 pending」という文字列が含まれるはずです。

また、終了ステータスは0であるはずです。

保留中の例でメッセージの期待値を満たす場合(失敗する)

次の内容で「example_spec.rb」という名前のファイルを作成します。

RSpec.configure do |config|
config.mock_with :rspec
end

RSpec.describe "passing message expectation in a pending example" do
it "fails with FIXED" do
pending
receiver = double('receiver')
expect(receiver).to receive(:message)
receiver.message
end
end

rspec example_spec.rbを実行すると、

出力には「FIXED」という文字列が含まれるはずです。

また、出力には「1 example, 1 failure」という文字列が含まれるはずです。

また、終了ステータスは1であるはずです。

RSpec.configuration.mock_framework.framework_nameへのアクセス

次の内容で「example_spec.rb」という名前のファイルを作成します。

RSpec.configure do |config|
config.mock_with :rspec
end

RSpec.describe "RSpec.configuration.mock_framework.framework_name" do
it "returns :rspec" do
expect(RSpec.configuration.mock_framework.framework_name).to eq(:rspec)
end
end

rspec example_spec.rbを実行すると、

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

生成された説明文でダブルが使用される場合

次の内容で「example_spec.rb」という名前のファイルを作成します。

RSpec.configure do |config|
config.mock_with :rspec
end

RSpec.describe "Testing" do
# Examples with no descriptions will default to RSpec-generated descriptions
it do
foo = double("Test")
expect(foo).to be foo
end
end

rspec example_spec.rbを実行すると、

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