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
Raw Normal View History

2018-06-27 17:00:37 -04:00
# frozen_string_literal: true
2018-06-25 15:49:56 -04:00
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