1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 03:39:34 +00:00
discourse/spec/requests/offline_controller_spec.rb

9 lines
151 B
Ruby

require 'rails_helper'
describe OfflineController do
it "can hit index" do
get "/offline.html"
expect(response.status).to eq(200)
end
end