2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/spec/controllers/admin/screened_urls_controller_spec.rb

22 lines
468 B
Ruby

require 'rails_helper'
describe Admin::ScreenedUrlsController do
it "is a subclass of AdminController" do
expect(Admin::ScreenedUrlsController < Admin::AdminController).to eq(true)
end
let!(:user) { log_in(:admin) }
context '.index' do
before do
get :index, format: :json
end
subject { response }
it { is_expected.to be_success }
it 'returns JSON' do
expect(::JSON.parse(subject.body)).to be_a(Array)
end
end
end