mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:40:53 -06: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
|