2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-02-11 00:18:16 +08:00
|
|
|
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
|
2018-06-11 12:33:07 +08:00
|
|
|
before do
|
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
end
|
2015-02-11 00:18:16 +08:00
|
|
|
|
|
|
|
it 'should return JSON' do
|
2018-06-11 12:33:07 +08:00
|
|
|
get "/admin/plugins.json"
|
2018-06-07 16:11:09 +08:00
|
|
|
expect(response.status).to eq(200)
|
2020-05-07 23:04:12 +08:00
|
|
|
expect(response.parsed_body.has_key?('plugins')).to eq(true)
|
2015-02-11 00:18:16 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|