Sha256: aef51a4f9106c5134d4784b2d9995fa75512ff046cbb82477402ff2513400a0a

Contents?: true

Size: 906 Bytes

Versions: 38

Compression:

Stored size: 906 Bytes

Contents

require File.join(File.dirname(__FILE__), '..', '..', 'test_helper')

class RenderWithLayoutMatcherTest < ActionController::TestCase # :nodoc:

  context "a controller that renders with a layout" do
    setup do
      @controller = build_response { render :layout => 'wide' }
    end

    should "accept rendering with any layout" do
      assert_accepts render_with_layout, @controller
    end

    should "accept rendering with that layout" do
      assert_accepts render_with_layout(:wide), @controller
    end

    should "reject rendering with another layout" do
      assert_rejects render_with_layout(:other), @controller
    end
  end

  context "a controller that renders without a layout" do
    setup do
      @controller = build_response { render :layout => false }
    end

    should "reject rendering with a layout" do
      assert_rejects render_with_layout, @controller
    end
  end

end

Version data entries

38 entries across 38 versions & 10 rubygems

Version Path
auser-poolparty-1.3.0 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.1 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.10 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.11 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.12 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.13 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.14 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.15 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.16 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.17 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.2 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.3 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.4 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.5 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.6 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.7 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
auser-poolparty-1.3.8 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
fairchild-poolparty-1.3.17 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
fairchild-poolparty-1.3.5 vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb
iGEL-shoulda-2.10.2 test/matchers/controller/render_with_layout_matcher_test.rb