mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
12 lines
203 B
Ruby
12 lines
203 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
|