File: in_state_ordering_constraint_test.rb

package info (click to toggle)
libmocha-ruby 0.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 912 kB
  • ctags: 1,516
  • sloc: ruby: 7,952; makefile: 4
file content (43 lines) | stat: -rw-r--r-- 1,098 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require File.join(File.dirname(__FILE__), "..", "test_helper")

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