Skip to content

Instantly share code, notes, and snippets.

@msarit
Last active April 6, 2018 15:25
Show Gist options
  • Save msarit/48793c91ef3785ec203a30a78f29b052 to your computer and use it in GitHub Desktop.
Save msarit/48793c91ef3785ec203a30a78f29b052 to your computer and use it in GitHub Desktop.
describe "grams#destroy action" do
it "should return a 404 error if gram with the specified id cannot be found" do
user = FactoryBot.create(:user)
sign_in user
delete :destroy, params: { id: 'GHOST' }
expect(response).to have_http_status(:not_found)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment