From e86b71f1d54ef8dc6a5dce4af5b9fc2f87963e89 Mon Sep 17 00:00:00 2001 From: Stella Rouzi Date: Fri, 13 Jun 2014 16:27:51 +0300 Subject: [PATCH] change test for render instead of redirect --- spec/controllers/admin/conferences_controller_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/controllers/admin/conferences_controller_spec.rb b/spec/controllers/admin/conferences_controller_spec.rb index 7bd9a42e..961f6463 100644 --- a/spec/controllers/admin/conferences_controller_spec.rb +++ b/spec/controllers/admin/conferences_controller_spec.rb @@ -97,7 +97,7 @@ describe Admin::ConferenceController do it 're-renders the new template' do post :create, conference: attributes_for(:conference, short_title: nil) - expect(response).to redirect_to new_admin_conference_path + expect(response).to be_success end end @@ -114,7 +114,7 @@ describe Admin::ConferenceController do it 're-renders the new template' do conference post :create, conference: attributes_for(:conference, short_title: conference.short_title) - expect(response).to redirect_to new_admin_conference_path + expect(response).to be_success end end end