greenlight/spec/controllers/main_controller_spec.rb
2018-06-27 17:00:37 -04:00

13 lines
231 B
Ruby

# frozen_string_literal: true
require "rails_helper"
describe MainController, type: :controller do
describe "GET #index" do
it "returns success" do
get :index
expect(response).to be_successful
end
end
end