Files
discourse/spec/requests/admin/plugins_controller_spec.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
505 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
2015-02-10 11:18:16 -05: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
before do
sign_in(Fabricate(:admin))
end
2015-02-10 11:18:16 -05:00
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)
2015-02-10 11:18:16 -05:00
end
end
end