Sha256: 3e02ba386e27f6820aad9a2a3d8c87db0d08bce5155c76f9f323428ecbd03332

Contents?: true

Size: 1.02 KB

Versions: 44

Compression:

Stored size: 1.02 KB

Contents

require File.expand_path('../../test_helper', __FILE__)

require 'mocha/in_state_ordering_constraint'

class InStateOrderingConstraintTest < Test::Unit::TestCase

  include Mocha

  class FakeStatePredicate

    attr_writer :active, :description

    def active?
      @active
    end

    def mocha_inspect
      @description
    end

  end

  def test_should_allow_invocation_when_state_is_active
    state_predicate = FakeStatePredicate.new
    ordering_constraint = InStateOrderingConstraint.new(state_predicate)

    state_predicate.active = true
    assert ordering_constraint.allows_invocation_now?

    state_predicate.active = false
    assert !ordering_constraint.allows_invocation_now?
  end

  def test_should_describe_itself_in_terms_of_the_state_predicates_description
    state_predicate = FakeStatePredicate.new
    ordering_constraint = InStateOrderingConstraint.new(state_predicate)

    state_predicate.description = 'the-state-predicate'

    assert_equal 'when the-state-predicate', ordering_constraint.mocha_inspect
  end

end

Version data entries

44 entries across 36 versions & 3 rubygems

Version Path
mocha-0.11.3 test/unit/in_state_ordering_constraint_test.rb
mocha-0.11.2 test/unit/in_state_ordering_constraint_test.rb
mocha-0.11.1 test/unit/in_state_ordering_constraint_test.rb
mocha-0.11.0 test/unit/in_state_ordering_constraint_test.rb