discourse/spec/requests/admin/screened_urls_controller_spec.rb
Jarek Radosz 781e3f5e10
DEV: Use response.parsed_body in specs (#9615)
Most of it was autofixed with rubocop-discourse 2.1.1.
2020-05-07 17:04:12 +02:00

24 lines
530 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Admin::ScreenedUrlsController do
it "is a subclass of AdminController" do
expect(Admin::ScreenedUrlsController < Admin::AdminController).to eq(true)
end
describe '#index' do
before do
sign_in(Fabricate(:admin))
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)
end
end
end