Merge pull request #229 from differentreality/create_conf_indicator

remove readonly option for start_date and end_date of conference
This commit is contained in:
Artem Chernikov 2014-06-19 14:04:04 +02:00
commit 8803384d2f
3 changed files with 6 additions and 8 deletions

View file

@ -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