mirror of
https://github.com/discourse/discourse.git
synced 2025-06-05 11:27:32 +08:00
REFACTOR: admin plugins controller specs to requests (#5977)
This commit is contained in:

committed by
Guo Xiang Tan

parent
c6fe082fe4
commit
63b2207065
@ -1,19 +0,0 @@
|
||||
require 'rails_helper'
|
||||
|
||||
describe Admin::PluginsController do
|
||||
|
||||
it "is a subclass of AdminController" do
|
||||
expect(Admin::PluginsController < Admin::AdminController).to eq(true)
|
||||
end
|
||||
|
||||
context "while logged in as an admin" do
|
||||
let!(:admin) { log_in(:admin) }
|
||||
|
||||
it 'should return JSON' do
|
||||
get :index, format: :json
|
||||
expect(response.status).to eq(200)
|
||||
expect(::JSON.parse(response.body).has_key?('plugins')).to eq(true)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user