osem-fcy/spec/controllers/conference_controller_spec.rb
2014-05-26 17:42:17 +05:30

12 lines
276 B
Ruby

require 'spec_helper'
describe ConferenceController do
let(:conference) { create(:conference_with_registration) }
describe 'GET #show' do
it 'returns http success' do
get :show, id: conference.short_title
expect(response).to be_success
end
end
end