mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:29:22 +08:00
9 lines
151 B
Ruby
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
|