Files
discourse/spec/requests/offline_controller_spec.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
164 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2022-07-28 05:27:38 +03:00
RSpec.describe OfflineController do
2017-10-31 15:44:16 +11:00
it "can hit index" do
get "/offline.html"
2017-10-31 15:44:16 +11:00
expect(response.status).to eq(200)
end
end