notebook/spec/controllers/main_controller_spec.rb
2016-10-01 19:00:09 -05:00

10 lines
208 B
Ruby

require 'rails_helper'
require 'support/devise'
RSpec.describe MainController, type: :controller do
describe 'GET #index' do
before { get :index }
it { is_expected.to respond_with(200) }
end
end