discourse/spec/controllers/offline_controller_spec.rb

9 lines
142 B
Ruby
Raw Normal View History

2017-10-31 00:44:16 -04:00
require 'rails_helper'
describe OfflineController do
it "can hit index" do
get :index
expect(response.status).to eq(200)
end
end