discourse/spec/requests/admin/screened_urls_controller_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
512 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Admin::ScreenedUrlsController do
it "is a subclass of StaffController" do
expect(Admin::ScreenedUrlsController < Admin::StaffController).to eq(true)
2013-08-15 22:48:30 +08:00
end
describe '#index' do
2013-08-15 22:48:30 +08:00
before do
sign_in(Fabricate(:admin))
2013-08-15 22:48:30 +08:00
end
it 'returns JSON' do
Fabricate(:screened_url)
get "/admin/logs/screened_urls.json"
expect(response.status).to eq(200)
json = response.parsed_body
expect(json.size).to eq(1)
2013-08-15 22:48:30 +08:00
end
end
end