2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-31 12:44:16 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe OfflineController do
|
|
|
|
it "can hit index" do
|
2018-06-07 12:24:05 +08:00
|
|
|
get "/offline.html"
|
2017-10-31 12:44:16 +08:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|