10 lines
178 B
Ruby
10 lines
178 B
Ruby
require 'spec_helper'
|
|
|
|
describe CguController, type: :controller do
|
|
describe 'GET #index' do
|
|
|
|
subject { get :index }
|
|
|
|
it { expect(subject.status).to eq 200 }
|
|
end
|
|
end
|