Skip to content

Instantly share code, notes, and snippets.

@anaumov
Created January 23, 2019 07:01
Show Gist options
  • Save anaumov/ad9c8396341b5b1676a16ab33a6f54d3 to your computer and use it in GitHub Desktop.
Save anaumov/ad9c8396341b5b1676a16ab33a6f54d3 to your computer and use it in GitHub Desktop.
let!(:user) { create :user }
it 'updates the user' do
expect_any_instance_of(User).to receive(:update!).with(name: 'Alex')
post "/users/#{user.id}", params: { name: 'Alex' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment