change test for render instead of redirect
This commit is contained in:
parent
72a077e260
commit
e86b71f1d5
1 changed files with 2 additions and 2 deletions
|
|
@ -97,7 +97,7 @@ describe Admin::ConferenceController do
|
||||||
it 're-renders the new template' do
|
it 're-renders the new template' do
|
||||||
post :create, conference:
|
post :create, conference:
|
||||||
attributes_for(:conference, short_title: nil)
|
attributes_for(:conference, short_title: nil)
|
||||||
expect(response).to redirect_to new_admin_conference_path
|
expect(response).to be_success
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -114,7 +114,7 @@ describe Admin::ConferenceController do
|
||||||
it 're-renders the new template' do
|
it 're-renders the new template' do
|
||||||
conference
|
conference
|
||||||
post :create, conference: attributes_for(:conference, short_title: conference.short_title)
|
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
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue