Sha256: 7515404ff734e70703f16161a88a9292ab30da03706e3b7657f0149098bda9ef

Contents?: true

Size: 789 Bytes

Versions: 5

Compression:

Stored size: 789 Bytes

Contents

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

class SetSessionMatcherTest < Test::Unit::TestCase # :nodoc:

  context "a controller that sets a session variable" do
    setup do
      @controller = build_response { session[:var] = 'value' }
    end

    should "accept assigning to that variable" do
      assert_accepts set_session(:var), @controller
    end

    should "accept assigning the correct value to that variable" do
      assert_accepts set_session(:var).to('value'), @controller
    end

    should "reject assigning another value to that variable" do
      assert_rejects set_session(:var).to('other'), @controller
    end

    should "reject assigning to another variable" do
      assert_rejects set_session(:other), @controller
    end
  end

end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
technicalpickles-shoulda-2.10.0 test/matchers/controller/set_session_matcher_test.rb
thoughtbot-shoulda-2.10.0 test/matchers/controller/set_session_matcher_test.rb
thoughtbot-shoulda-2.9.2 test/matchers/controller/set_session_matcher_test.rb
shoulda-2.9.2 test/matchers/controller/set_session_matcher_test.rb
shoulda-2.10.0 test/matchers/controller/set_session_matcher_test.rb