forked from External/greenlight
13 lines
231 B
Ruby
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
|