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