Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Last active June 7, 2016 06:34
Show Gist options
  • Save YumaInaura/a706de316052bcd937ba to your computer and use it in GitHub Desktop.
Save YumaInaura/a706de316052bcd937ba to your computer and use it in GitHub Desktop.
Rspec | should_receive は何をしている? ref: http://qiita.com/Yinaura/items/d18658a2aff39bfb0243
it do
SomeModel.should_receive(:create)
SomeModel.create
end
it do
SomeModel.create
SomeModel.should_receive(:create)
end
it do
SomeModel.should_receive(:create).with)(title: 'Bible')
SomeModel.create(title: 'Bible')
end
it do
SomeModel.should_receive(:create).with)(title: 'Bible')
SomeModel.create(title: 'Gone with the wind')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment