Sha256: 6b3f133e09f232f999d5e76538c03f4c60f31d527c7742e49c558f5049aa4904
Contents?: true
Size: 1.83 KB
Versions: 3
Compression:
Stored size: 1.83 KB
Contents
require File.expand_path('../../../helper', __FILE__) require __DIR__('../../fixtures/zen/theme/theme') require 'fileutils' describe('Zen::Controller::MainController') do behaves_like :capybara after do # Let's make sure the 404 template is back where it belongs. template = File.join(Zen::Theme[:spec_theme].template_dir, '404.xhtml') old = template + '.old' if File.exist?(old) and !File.exist?(template) FileUtils.mv(old, template) end end section = Sections::Model::Section.create( :name => 'Default section', :slug => 'default-section', :comment_allow => false, :comment_require_account => false, :comment_moderate => false, :comment_format => 'plain' ) get_setting(:theme).value = 'spec_theme' it('Visit the homepage') do visit('/') page.body.include?('This is the homepage.').should == true end it('Request a page without a theme set') do get_setting(:theme).value = '' visit('/') page.body.include?(lang('zen_general.errors.no_theme')).should == true get_setting(:theme).value = 'spec_theme' end it('Request a non existing template') do visit('/does-not-exist') page.body.include?('The requested page could not be found!') \ .should == true page.status_code.should == 404 end it('Request a non existing template without a 404 template') do template = File.join( Zen::Theme[:spec_theme].template_dir, '404.xhtml' ) FileUtils.mv(template, template + '.old') visit('/does-not-exist') page.body.include?(lang('zen_general.errors.no_templates')) \ .should == true page.status_code.should == 404 FileUtils.mv(template + '.old', template) end Sections::Model::Section.destroy get_setting(:theme).value = nil end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
zen-0.3 | spec/zen/controller/main_controller.rb |
zen-0.3b1 | spec/zen/controller/main_controller.rb |
zen-0.3b | spec/zen/controller/main_controller.rb |