12 lines
191 B
Ruby
12 lines
191 B
Ruby
require 'spec_helper'
|
|
|
|
describe ConferencesController do
|
|
|
|
describe "GET 'show'" do
|
|
it "returns http success" do
|
|
get 'show'
|
|
expect(response).to be_success
|
|
end
|
|
end
|
|
|
|
end
|