mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-06 22:52:58 -04:00
12 lines
201 B
Ruby
12 lines
201 B
Ruby
require 'spec_helper'
|
|
|
|
describe ConferenceController do
|
|
describe 'GET #show' do
|
|
it 'returns http success' do
|
|
get :show, id: 'sample'
|
|
expect(response).to be_success
|
|
end
|
|
end
|
|
|
|
end
|