mirror of
https://github.com/discourse/discourse.git
synced 2025-05-28 13:51:18 +08:00
FIX: Broken spec
This commit is contained in:
29
spec/controllers/admin/site_texts_controller_spec.rb
Normal file
29
spec/controllers/admin/site_texts_controller_spec.rb
Normal file
@ -0,0 +1,29 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe Admin::SiteTextsController do
|
||||
|
||||
it "is a subclass of AdminController" do
|
||||
expect(Admin::SiteTextsController < Admin::AdminController).to eq(true)
|
||||
end
|
||||
|
||||
context 'while logged in as an admin' do
|
||||
before do
|
||||
@user = log_in(:admin)
|
||||
end
|
||||
|
||||
context '.show' do
|
||||
let(:text_type) { SiteText.text_types.first.text_type }
|
||||
|
||||
it 'returns success' do
|
||||
xhr :get, :show, id: text_type
|
||||
expect(response).to be_success
|
||||
end
|
||||
|
||||
it 'returns JSON' do
|
||||
xhr :get, :show, id: text_type
|
||||
expect(::JSON.parse(response.body)).to be_present
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user