mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 18:36:35 +08:00
49ed382c2a
This also handles a general case where exceptions leak out prior to being handled by the application controller
13 lines
319 B
Ruby
13 lines
319 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe EmailController do
|
|
describe '#unsubscribed' do
|
|
describe 'when email is invalid' do
|
|
it 'should return the right response' do
|
|
get '/email/unsubscribed', params: { email: 'somerandomstring' }
|
|
expect(response.status).to eq(404)
|
|
end
|
|
end
|
|
end
|
|
end
|