This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/requests/admin/plugins_controller_spec.rb
2022-07-28 10:27:38 +08:00

21 lines
487 B
Ruby

# frozen_string_literal: true
RSpec.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
before do
sign_in(Fabricate(:admin))
end
it 'should return JSON' do
get "/admin/plugins.json"
expect(response.status).to eq(200)
expect(response.parsed_body.has_key?('plugins')).to eq(true)
end
end
end