Skip to content

Instantly share code, notes, and snippets.

@anaumov
Last active January 23, 2019 06:50
Show Gist options
  • Save anaumov/b79811a1d813a5098847a3661d33edd1 to your computer and use it in GitHub Desktop.
Save anaumov/b79811a1d813a5098847a3661d33edd1 to your computer and use it in GitHub Desktop.
let!(:user) { create :user }
it 'updates the user' do
expect(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