2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/spec/controllers/offline_controller_spec.rb

9 lines
142 B
Ruby
Raw Normal View History

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