redinger-rr 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. data/CHANGES +221 -0
  2. data/README.rdoc +343 -0
  3. data/Rakefile +88 -0
  4. data/VERSION.yml +4 -0
  5. data/lib/rr.rb +88 -0
  6. data/lib/rr/adapters/rr_methods.rb +122 -0
  7. data/lib/rr/adapters/rspec.rb +59 -0
  8. data/lib/rr/adapters/test_unit.rb +29 -0
  9. data/lib/rr/double.rb +152 -0
  10. data/lib/rr/double_definitions/child_double_definition_creator.rb +27 -0
  11. data/lib/rr/double_definitions/double_definition.rb +348 -0
  12. data/lib/rr/double_definitions/double_definition_creator.rb +167 -0
  13. data/lib/rr/double_definitions/double_definition_creator_proxy.rb +37 -0
  14. data/lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb +15 -0
  15. data/lib/rr/double_definitions/strategies/implementation/proxy.rb +62 -0
  16. data/lib/rr/double_definitions/strategies/implementation/reimplementation.rb +14 -0
  17. data/lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb +17 -0
  18. data/lib/rr/double_definitions/strategies/scope/instance.rb +15 -0
  19. data/lib/rr/double_definitions/strategies/scope/instance_of_class.rb +50 -0
  20. data/lib/rr/double_definitions/strategies/scope/scope_strategy.rb +15 -0
  21. data/lib/rr/double_definitions/strategies/strategy.rb +70 -0
  22. data/lib/rr/double_definitions/strategies/verification/dont_allow.rb +34 -0
  23. data/lib/rr/double_definitions/strategies/verification/mock.rb +44 -0
  24. data/lib/rr/double_definitions/strategies/verification/stub.rb +45 -0
  25. data/lib/rr/double_definitions/strategies/verification/verification_strategy.rb +15 -0
  26. data/lib/rr/double_injection.rb +180 -0
  27. data/lib/rr/double_matches.rb +51 -0
  28. data/lib/rr/errors/argument_equality_error.rb +6 -0
  29. data/lib/rr/errors/double_definition_error.rb +6 -0
  30. data/lib/rr/errors/double_not_found_error.rb +6 -0
  31. data/lib/rr/errors/double_order_error.rb +6 -0
  32. data/lib/rr/errors/rr_error.rb +20 -0
  33. data/lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb +8 -0
  34. data/lib/rr/errors/spy_verification_errors/invocation_count_error.rb +8 -0
  35. data/lib/rr/errors/spy_verification_errors/spy_verification_error.rb +8 -0
  36. data/lib/rr/errors/subject_does_not_implement_method_error.rb +6 -0
  37. data/lib/rr/errors/subject_has_different_arity_error.rb +6 -0
  38. data/lib/rr/errors/times_called_error.rb +6 -0
  39. data/lib/rr/expectations/any_argument_expectation.rb +21 -0
  40. data/lib/rr/expectations/argument_equality_expectation.rb +41 -0
  41. data/lib/rr/expectations/times_called_expectation.rb +57 -0
  42. data/lib/rr/hash_with_object_id_key.rb +44 -0
  43. data/lib/rr/method_dispatches/base_method_dispatch.rb +108 -0
  44. data/lib/rr/method_dispatches/method_dispatch.rb +61 -0
  45. data/lib/rr/method_dispatches/method_missing_dispatch.rb +49 -0
  46. data/lib/rr/proc_from_block.rb +7 -0
  47. data/lib/rr/recorded_calls.rb +103 -0
  48. data/lib/rr/space.rb +123 -0
  49. data/lib/rr/spy_verification.rb +48 -0
  50. data/lib/rr/spy_verification_proxy.rb +18 -0
  51. data/lib/rr/times_called_matchers/any_times_matcher.rb +18 -0
  52. data/lib/rr/times_called_matchers/at_least_matcher.rb +15 -0
  53. data/lib/rr/times_called_matchers/at_most_matcher.rb +23 -0
  54. data/lib/rr/times_called_matchers/integer_matcher.rb +19 -0
  55. data/lib/rr/times_called_matchers/non_terminal.rb +27 -0
  56. data/lib/rr/times_called_matchers/proc_matcher.rb +11 -0
  57. data/lib/rr/times_called_matchers/range_matcher.rb +21 -0
  58. data/lib/rr/times_called_matchers/terminal.rb +20 -0
  59. data/lib/rr/times_called_matchers/times_called_matcher.rb +44 -0
  60. data/lib/rr/wildcard_matchers.rb +158 -0
  61. data/lib/rr/wildcard_matchers/anything.rb +18 -0
  62. data/lib/rr/wildcard_matchers/boolean.rb +23 -0
  63. data/lib/rr/wildcard_matchers/duck_type.rb +32 -0
  64. data/lib/rr/wildcard_matchers/hash_including.rb +29 -0
  65. data/lib/rr/wildcard_matchers/is_a.rb +25 -0
  66. data/lib/rr/wildcard_matchers/numeric.rb +13 -0
  67. data/lib/rr/wildcard_matchers/range.rb +7 -0
  68. data/lib/rr/wildcard_matchers/regexp.rb +7 -0
  69. data/lib/rr/wildcard_matchers/satisfy.rb +26 -0
  70. data/spec/core_spec_suite.rb +19 -0
  71. data/spec/environment_fixture_setup.rb +7 -0
  72. data/spec/high_level_spec.rb +398 -0
  73. data/spec/proc_from_block_spec.rb +14 -0
  74. data/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +67 -0
  75. data/spec/rr/adapters/rr_methods_creator_spec.rb +149 -0
  76. data/spec/rr/adapters/rr_methods_space_spec.rb +115 -0
  77. data/spec/rr/adapters/rr_methods_spec_helper.rb +11 -0
  78. data/spec/rr/adapters/rr_methods_times_matcher_spec.rb +17 -0
  79. data/spec/rr/double_definitions/child_double_definition_creator_spec.rb +112 -0
  80. data/spec/rr/double_definitions/double_definition_creator_proxy_spec.rb +155 -0
  81. data/spec/rr/double_definitions/double_definition_creator_spec.rb +502 -0
  82. data/spec/rr/double_definitions/double_definition_spec.rb +1165 -0
  83. data/spec/rr/double_injection/double_injection_spec.rb +339 -0
  84. data/spec/rr/double_injection/double_injection_verify_spec.rb +29 -0
  85. data/spec/rr/double_spec.rb +352 -0
  86. data/spec/rr/errors/rr_error_spec.rb +67 -0
  87. data/spec/rr/expectations/any_argument_expectation_spec.rb +47 -0
  88. data/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +14 -0
  89. data/spec/rr/expectations/argument_equality_expectation_spec.rb +135 -0
  90. data/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +34 -0
  91. data/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
  92. data/spec/rr/expectations/hash_including_spec.rb +17 -0
  93. data/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +59 -0
  94. data/spec/rr/expectations/satisfy_spec.rb +14 -0
  95. data/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +46 -0
  96. data/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +69 -0
  97. data/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +71 -0
  98. data/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +23 -0
  99. data/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +104 -0
  100. data/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +81 -0
  101. data/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +83 -0
  102. data/spec/rr/expectations/times_called_expectation/times_called_expectation_spec.rb +38 -0
  103. data/spec/rr/rspec/invocation_matcher_spec.rb +279 -0
  104. data/spec/rr/rspec/rspec_adapter_spec.rb +66 -0
  105. data/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +31 -0
  106. data/spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb +11 -0
  107. data/spec/rr/rspec/rspec_usage_spec.rb +86 -0
  108. data/spec/rr/space/hash_with_object_id_key_spec.rb +88 -0
  109. data/spec/rr/space/space_spec.rb +550 -0
  110. data/spec/rr/test_unit/test_helper.rb +7 -0
  111. data/spec/rr/test_unit/test_unit_backtrace_test.rb +36 -0
  112. data/spec/rr/test_unit/test_unit_integration_test.rb +57 -0
  113. data/spec/rr/times_called_matchers/any_times_matcher_spec.rb +47 -0
  114. data/spec/rr/times_called_matchers/at_least_matcher_spec.rb +55 -0
  115. data/spec/rr/times_called_matchers/at_most_matcher_spec.rb +70 -0
  116. data/spec/rr/times_called_matchers/integer_matcher_spec.rb +70 -0
  117. data/spec/rr/times_called_matchers/proc_matcher_spec.rb +55 -0
  118. data/spec/rr/times_called_matchers/range_matcher_spec.rb +76 -0
  119. data/spec/rr/times_called_matchers/times_called_matcher_spec.rb +118 -0
  120. data/spec/rr/wildcard_matchers/anything_spec.rb +24 -0
  121. data/spec/rr/wildcard_matchers/boolean_spec.rb +36 -0
  122. data/spec/rr/wildcard_matchers/duck_type_spec.rb +52 -0
  123. data/spec/rr/wildcard_matchers/is_a_spec.rb +32 -0
  124. data/spec/rr/wildcard_matchers/numeric_spec.rb +32 -0
  125. data/spec/rr/wildcard_matchers/range_spec.rb +35 -0
  126. data/spec/rr/wildcard_matchers/regexp_spec.rb +43 -0
  127. data/spec/rr_spec.rb +28 -0
  128. data/spec/rspec_spec_suite.rb +17 -0
  129. data/spec/spec_helper.rb +109 -0
  130. data/spec/spec_suite.rb +31 -0
  131. data/spec/spy_verification_spec.rb +129 -0
  132. data/spec/test_unit_spec_suite.rb +21 -0
  133. metadata +193 -0
@@ -0,0 +1,7 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../environment_fixture_setup")
2
+
3
+ require "test/unit"
4
+
5
+ class Test::Unit::TestCase
6
+ include RR::Adapters::TestUnit
7
+ end
@@ -0,0 +1,36 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/test_helper")
2
+
3
+ class TestUnitBacktraceTest < Test::Unit::TestCase
4
+ def setup
5
+ super
6
+ @subject = Object.new
7
+ end
8
+
9
+ def teardown
10
+ super
11
+ end
12
+
13
+ def test_trim_backtrace_is_set
14
+ assert RR.trim_backtrace
15
+ end
16
+
17
+ def test_backtrace_tweaking
18
+ skip "Skipped, because there is no Test::Unit::TestResult in this Test::Unit. Don't worry, this is totally fine." unless defined?(Test::Unit::TestResult)
19
+ old_result = @_result
20
+ result = Test::Unit::TestResult.new
21
+
22
+ error_display = nil
23
+ result.add_listener(Test::Unit::TestResult::FAULT) do |f|
24
+ error_display = f.long_display
25
+ end
26
+ test_case = self.class.new(:backtrace_tweaking)
27
+ test_case.run(result) {}
28
+
29
+ assert !error_display.include?("lib/rr")
30
+ end
31
+
32
+ def backtrace_tweaking
33
+ mock(@subject).foobar
34
+ RR::Space::instance.verify_double(@subject, :foobar)
35
+ end
36
+ end
@@ -0,0 +1,57 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/test_helper")
2
+
3
+ class TestUnitIntegrationTest < Test::Unit::TestCase
4
+ def setup
5
+ super
6
+ @subject = Object.new
7
+ end
8
+
9
+ def teardown
10
+ super
11
+ end
12
+
13
+ def test_using_a_mock
14
+ mock(@subject).foobar(1, 2) {:baz}
15
+ assert_equal :baz, @subject.foobar(1, 2)
16
+ end
17
+
18
+ def test_using_a_stub
19
+ stub(@subject).foobar {:baz}
20
+ assert_equal :baz, @subject.foobar("any", "thing")
21
+ end
22
+
23
+ def test_using_a_mock_proxy
24
+ def @subject.foobar
25
+ :baz
26
+ end
27
+
28
+ mock.proxy(@subject).foobar
29
+ assert_equal :baz, @subject.foobar
30
+ end
31
+
32
+ def test_using_a_stub_proxy
33
+ def @subject.foobar
34
+ :baz
35
+ end
36
+
37
+ stub.proxy(@subject).foobar
38
+ assert_equal :baz, @subject.foobar
39
+ end
40
+
41
+ def test_times_called_verification
42
+ mock(@subject).foobar(1, 2) {:baz}
43
+ assert_raise RR::Errors::TimesCalledError do
44
+ teardown
45
+ end
46
+ end
47
+
48
+ def test_using_assert_received
49
+ stub(@subject).foobar(1, 2)
50
+ @subject.foobar(1, 2)
51
+ assert_received(@subject) {|subject| subject.foobar(1, 2)}
52
+
53
+ assert_raise(RR::Errors::SpyVerificationErrors::InvocationCountError) do
54
+ assert_received(@subject) {|subject| subject.foobar(1, 2, 3)}
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,47 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
+
3
+ module RR
4
+ module TimesCalledMatchers
5
+ describe AnyTimesMatcher do
6
+ attr_reader :matcher
7
+ before do
8
+ @matcher = AnyTimesMatcher.new
9
+ end
10
+
11
+ describe AnyTimesMatcher, "#possible_match?" do
12
+ it "always returns true" do
13
+ matcher.should be_possible_match(0)
14
+ matcher.should be_possible_match(99999)
15
+ end
16
+ end
17
+
18
+ describe AnyTimesMatcher, "#matches?" do
19
+ it "always returns true" do
20
+ matcher.should be_matches(0)
21
+ matcher.should be_matches(99999)
22
+ end
23
+ end
24
+
25
+ describe AnyTimesMatcher, "#attempt?" do
26
+ it "always returns true" do
27
+ matcher.should be_attempt(0)
28
+ matcher.should be_attempt(99999)
29
+ end
30
+ end
31
+
32
+ describe AnyTimesMatcher, "#terminal?" do
33
+ it "returns false" do
34
+ matcher.should_not be_terminal
35
+ end
36
+ end
37
+
38
+ describe AnyTimesMatcher, "#error_message" do
39
+ it "has an error message" do
40
+ matcher.error_message(2).should == (
41
+ "Called 2 times.\nExpected any number of times."
42
+ )
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,55 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
+
3
+ module RR
4
+ module TimesCalledMatchers
5
+ describe AtLeastMatcher do
6
+ attr_reader :matcher, :times
7
+ before do
8
+ @times = 3
9
+ @matcher = AtLeastMatcher.new(times)
10
+ end
11
+
12
+ describe "#possible_match?" do
13
+ it "always returns true" do
14
+ matcher.should be_possible_match(99999)
15
+ end
16
+ end
17
+
18
+ describe "#matches?" do
19
+ it "returns false when times_called less than times" do
20
+ matcher.should_not be_matches(2)
21
+ end
22
+
23
+ it "returns true when times_called == times" do
24
+ matcher.should be_matches(3)
25
+ end
26
+
27
+ it "returns true when times_called > times" do
28
+ matcher.should be_matches(4)
29
+ end
30
+ end
31
+
32
+ describe "#attempt?" do
33
+ it "always returns true" do
34
+ matcher.should be_attempt(1)
35
+ matcher.should be_attempt(100000)
36
+ end
37
+ end
38
+
39
+ describe AnyTimesMatcher, "#terminal?" do
40
+ it "returns false" do
41
+ matcher.should_not be_terminal
42
+ end
43
+ end
44
+
45
+ describe "#error_message" do
46
+ it "has an error message" do
47
+ matcher.error_message(2).should == (
48
+ "Called 2 times.\nExpected at least 3 times."
49
+ )
50
+ end
51
+ end
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,70 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
+
3
+ module RR
4
+ module TimesCalledMatchers
5
+ describe AtMostMatcher do
6
+ attr_reader :matcher, :times
7
+ before do
8
+ @times = 3
9
+ @matcher = AtMostMatcher.new(times)
10
+ end
11
+
12
+ describe AtMostMatcher, "#possible_match?" do
13
+ it "returns true when times called < times" do
14
+ matcher.should be_possible_match(2)
15
+ end
16
+
17
+ it "returns true when times called == times" do
18
+ matcher.should be_possible_match(3)
19
+ end
20
+
21
+ it "returns false when times called > times" do
22
+ matcher.should_not be_possible_match(4)
23
+ end
24
+ end
25
+
26
+ describe AtMostMatcher, "#matches?" do
27
+ it "returns true when times_called less than times" do
28
+ matcher.should be_matches(2)
29
+ end
30
+
31
+ it "returns true when times_called == times" do
32
+ matcher.should be_matches(3)
33
+ end
34
+
35
+ it "returns false when times_called > times" do
36
+ matcher.should_not be_matches(4)
37
+ end
38
+ end
39
+
40
+ describe AtMostMatcher, "#attempt?" do
41
+ it "returns true when less than expected times" do
42
+ matcher.should be_attempt(2)
43
+ end
44
+
45
+ it "returns false when == expected times" do
46
+ matcher.should_not be_attempt(3)
47
+ end
48
+
49
+ it "returns false when > expected times" do
50
+ matcher.should_not be_attempt(4)
51
+ end
52
+ end
53
+
54
+ describe AnyTimesMatcher, "#terminal?" do
55
+ it "returns true" do
56
+ matcher.should be_terminal
57
+ end
58
+ end
59
+
60
+ describe AtMostMatcher, "#error_message" do
61
+ it "has an error message" do
62
+ matcher.error_message(5).should == (
63
+ "Called 5 times.\nExpected at most 3 times."
64
+ )
65
+ end
66
+ end
67
+ end
68
+
69
+ end
70
+ end
@@ -0,0 +1,70 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
+
3
+ module RR
4
+ module TimesCalledMatchers
5
+ describe IntegerMatcher do
6
+ attr_reader :matcher, :times
7
+ before do
8
+ @times = 3
9
+ @matcher = IntegerMatcher.new(times)
10
+ end
11
+
12
+ describe "#possible_match?" do
13
+ it "returns true when times called < times" do
14
+ matcher.should be_possible_match(2)
15
+ end
16
+
17
+ it "returns true when times called == times" do
18
+ matcher.should be_possible_match(3)
19
+ end
20
+
21
+ it "returns false when times called > times" do
22
+ matcher.should_not be_possible_match(4)
23
+ end
24
+ end
25
+
26
+ describe "#matches?" do
27
+ it "returns false when times_called less than times" do
28
+ matcher.should_not be_matches(2)
29
+ end
30
+
31
+ it "returns true when times_called == times" do
32
+ matcher.should be_matches(3)
33
+ end
34
+
35
+ it "returns false when times_called > times" do
36
+ matcher.should_not be_matches(4)
37
+ end
38
+ end
39
+
40
+ describe "#attempt?" do
41
+ it "returns true when less than expected times" do
42
+ matcher.should be_attempt(2)
43
+ end
44
+
45
+ it "returns false when == expected times" do
46
+ matcher.should_not be_attempt(3)
47
+ end
48
+
49
+ it "returns false when > expected times" do
50
+ matcher.should_not be_attempt(4)
51
+ end
52
+ end
53
+
54
+ describe AnyTimesMatcher, "#terminal?" do
55
+ it "returns true" do
56
+ matcher.should be_terminal
57
+ end
58
+ end
59
+
60
+ describe "#error_message" do
61
+ it "has an error message" do
62
+ matcher.error_message(2).should == (
63
+ "Called 2 times.\nExpected 3 times."
64
+ )
65
+ end
66
+ end
67
+ end
68
+
69
+ end
70
+ end
@@ -0,0 +1,55 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
+
3
+ module RR
4
+ module TimesCalledMatchers
5
+ describe ProcMatcher do
6
+ attr_reader :matcher, :times
7
+ before do
8
+ @times = lambda {|other| other == 3}
9
+ @matcher = ProcMatcher.new(times)
10
+ end
11
+
12
+ describe "#possible_match?" do
13
+ it "always returns true" do
14
+ matcher.should be_possible_match(2)
15
+ matcher.should be_possible_match(3)
16
+ matcher.should be_possible_match(10)
17
+ end
18
+ end
19
+
20
+ describe "#matches?" do
21
+ it "returns false when lambda returns false" do
22
+ times.call(2).should be_false
23
+ matcher.should_not be_matches(2)
24
+ end
25
+
26
+ it "returns true when lambda returns true" do
27
+ times.call(3).should be_true
28
+ matcher.should be_matches(3)
29
+ end
30
+ end
31
+
32
+ describe "#attempt?" do
33
+ it "always returns true" do
34
+ matcher.should be_attempt(2)
35
+ matcher.should be_attempt(3)
36
+ matcher.should be_attempt(10)
37
+ end
38
+ end
39
+
40
+ describe "#terminal?" do
41
+ it "returns false" do
42
+ matcher.should_not be_terminal
43
+ end
44
+ end
45
+
46
+ describe "#error_message" do
47
+ it "has an error message" do
48
+ matcher.error_message(1).should =~
49
+ /Called 1 time.\nExpected #<Proc.*> times./
50
+ end
51
+ end
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,76 @@
1
+ require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
+
3
+ module RR
4
+ module TimesCalledMatchers
5
+ describe RangeMatcher do
6
+ attr_reader :matcher, :times
7
+ before do
8
+ @times = 2..4
9
+ @matcher = RangeMatcher.new(times)
10
+ end
11
+
12
+ describe "#possible_match?" do
13
+ it "returns true when times called < start of range" do
14
+ matcher.should be_possible_match(1)
15
+ end
16
+
17
+ it "returns true when times called in range" do
18
+ matcher.should be_possible_match(2)
19
+ matcher.should be_possible_match(3)
20
+ matcher.should be_possible_match(4)
21
+ end
22
+
23
+ it "returns false when times called > end of range" do
24
+ matcher.should_not be_possible_match(5)
25
+ end
26
+ end
27
+
28
+ describe "#matches?" do
29
+ it "returns false when times_called less than start of range" do
30
+ matcher.should_not be_matches(1)
31
+ end
32
+
33
+ it "returns true when times_called in range" do
34
+ matcher.should be_matches(2)
35
+ matcher.should be_matches(3)
36
+ matcher.should be_matches(4)
37
+ end
38
+
39
+ it "returns false when times_called > end of range" do
40
+ matcher.should_not be_matches(5)
41
+ end
42
+ end
43
+
44
+ describe "#attempt?" do
45
+ it "returns true when less than start of range" do
46
+ matcher.should be_attempt(1)
47
+ end
48
+
49
+ it "returns true when in range" do
50
+ matcher.should be_attempt(2)
51
+ matcher.should be_attempt(3)
52
+ matcher.should be_attempt(4)
53
+ end
54
+
55
+ it "returns false when > end of range" do
56
+ matcher.should_not be_attempt(5)
57
+ end
58
+ end
59
+
60
+ describe "#terminal?" do
61
+ it "returns true" do
62
+ matcher.should be_terminal
63
+ end
64
+ end
65
+
66
+ describe "#error_message" do
67
+ it "has an error message" do
68
+ matcher.error_message(1).should == (
69
+ "Called 1 time.\nExpected 2..4 times."
70
+ )
71
+ end
72
+ end
73
+ end
74
+
75
+ end
76
+ end