mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 15:25:10 +08:00
89ad2b5900
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.
20 lines
462 B
Ruby
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
|