0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-04 10:39:43 +08:00
discourse/spec/requests/offline_controller_spec.rb
2022-07-28 10:27:38 +08:00

8 lines
164 B
Ruby
Vendored

# frozen_string_literal: true
RSpec.describe OfflineController do
it "can hit index" do
get "/offline.html"
expect(response.status).to eq(200)
end
end