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