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