2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
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)
|
2015-04-25 23:18:35 +08:00
|
|
|
expect(::JSON.parse(response.body).has_key?('plugins')).to eq(true)
|
2015-02-11 00:18:16 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|