discourse/spec/controllers/admin/site_text_controller_spec.rb

30 lines
629 B
Ruby
Raw Normal View History

require 'spec_helper'
2014-09-24 14:45:35 -04:00
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
2014-09-24 14:45:35 -04:00
let(:text_type) { SiteText.text_types.first.text_type }
it 'returns success' do
2014-09-24 14:45:35 -04:00
xhr :get, :show, id: text_type
response.should be_success
end
it 'returns JSON' do
2014-09-24 14:45:35 -04:00
xhr :get, :show, id: text_type
::JSON.parse(response.body).should be_present
end
end
end
end