mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:54:16 +08:00
30 lines
629 B
Ruby
30 lines
629 B
Ruby
require 'spec_helper'
|
|
|
|
describe Admin::SiteTextController do
|
|
|
|
it "is a subclass of AdminController" do
|
|
(Admin::SiteTextController < Admin::AdminController).should == 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
|
|
response.should be_success
|
|
end
|
|
|
|
it 'returns JSON' do
|
|
xhr :get, :show, id: text_type
|
|
::JSON.parse(response.body).should be_present
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|