discourse/spec/controllers/admin/plugins_controller_spec.rb
Sam 89ad2b5900 DEV: Rails 5.2 upgrade and global gem upgrade
This updates tests to use latest rails 5 practice
and updates ALL dependencies that could be updated

Performance testing shows that performance has not regressed
if anything it is marginally faster now.
2018-06-07 14:21:33 +10:00

20 lines
462 B
Ruby

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).to be_successful
expect(::JSON.parse(response.body).has_key?('plugins')).to eq(true)
end
end
end