This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/spec/controllers/main_controller_spec.rb

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