From c3316a339c0f62d8b19fe7c2c1a9f23e9651bd55 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 16 Aug 2016 22:36:34 +0200 Subject: Redirect to registrations closed message instead of modifying body. --- spec/registration_spec.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'spec') diff --git a/spec/registration_spec.rb b/spec/registration_spec.rb index 4dd57d5..95ed6a0 100644 --- a/spec/registration_spec.rb +++ b/spec/registration_spec.rb @@ -42,12 +42,10 @@ describe RegistrationApp do get '/' end - it 'should succeed' do - expect(last_response).to be_ok - end - - it 'displays message that registration is closed' do - expect(last_response.body).to match(/Registreringen er stengt/) + it 'should redirect to registrations closed page' do + expect(last_response).to be_redirect + follow_redirect! + expect(last_response.location).to match '/registrations_closed' end end end @@ -183,7 +181,9 @@ describe RegistrationApp do end it 'redirects to registration closed message' do - expect(last_response.body).to match('Registreringen er stengt') + expect(last_response).to be_redirect + follow_redirect! + expect(last_response.location).to match '/registrations_closed' end end end -- cgit v1.2.3