mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
9 lines
142 B
Ruby
9 lines
142 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
describe OfflineController do
|
||
|
it "can hit index" do
|
||
|
get :index
|
||
|
expect(response.status).to eq(200)
|
||
|
end
|
||
|
end
|