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