rr 1.0.4 → 1.0.5.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +15 -0
  2. data/CHANGES.md +376 -0
  3. data/Gemfile +7 -10
  4. data/README.md +822 -0
  5. data/Rakefile +24 -78
  6. data/VERSION +1 -0
  7. data/lib/rr.rb +3 -0
  8. data/lib/rr/adapters/minitest.rb +6 -0
  9. data/lib/rr/adapters/rr_methods.rb +6 -10
  10. data/lib/rr/adapters/rspec.rb +3 -0
  11. data/lib/rr/adapters/rspec2.rb +30 -0
  12. data/lib/rr/adapters/test_unit.rb +2 -0
  13. data/lib/rr/double.rb +3 -2
  14. data/lib/rr/double_definitions/child_double_definition_create.rb +3 -2
  15. data/lib/rr/double_definitions/double_definition.rb +15 -13
  16. data/lib/rr/double_definitions/double_definition_create.rb +9 -5
  17. data/lib/rr/double_definitions/double_injections/any_instance_of.rb +3 -2
  18. data/lib/rr/double_definitions/strategies/strategy.rb +5 -4
  19. data/lib/rr/double_definitions/strategies/strategy_methods.rb +6 -8
  20. data/lib/rr/double_definitions/strategies/verification/mock.rb +3 -3
  21. data/lib/rr/double_matches.rb +2 -1
  22. data/lib/rr/expectations/argument_equality_expectation.rb +2 -2
  23. data/lib/rr/expectations/times_called_expectation.rb +2 -2
  24. data/lib/rr/injections/double_injection.rb +12 -11
  25. data/lib/rr/injections/injection.rb +2 -2
  26. data/lib/rr/injections/method_missing_injection.rb +21 -7
  27. data/lib/rr/injections/singleton_method_added_injection.rb +3 -1
  28. data/lib/rr/method_dispatches/base_method_dispatch.rb +1 -1
  29. data/lib/rr/method_dispatches/method_dispatch.rb +2 -1
  30. data/lib/rr/method_dispatches/method_missing_dispatch.rb +2 -1
  31. data/lib/rr/proc_from_block.rb +8 -4
  32. data/lib/rr/space.rb +3 -2
  33. data/lib/rr/times_called_matchers/times_called_matcher.rb +2 -2
  34. data/lib/rr/version.rb +5 -0
  35. data/lib/rr/wildcard_matchers/boolean.rb +2 -2
  36. data/spec/runner.rb +41 -0
  37. metadata +45 -133
  38. data/.gitignore +0 -10
  39. data/.runrc +0 -3
  40. data/.rvmrc +0 -2
  41. data/CHANGES +0 -266
  42. data/Gemfile.lock +0 -31
  43. data/README.rdoc +0 -392
  44. data/benchmarks/rr_benchmark.rb +0 -32
  45. data/benchmarks/rspec_benchmark.rb +0 -14
  46. data/doc/0.6.0.release.markdown +0 -81
  47. data/doc/todo.txt +0 -0
  48. data/introducting_rr.txt +0 -206
  49. data/rr.gemspec +0 -37
  50. data/spec/api/any_instance_of/all_instances_of_spec.rb +0 -12
  51. data/spec/api/any_instance_of/any_instance_of_spec.rb +0 -47
  52. data/spec/api/any_instance_of/instance_of_spec.rb +0 -12
  53. data/spec/api/dont_allow/dont_allow_after_stub_spec.rb +0 -14
  54. data/spec/api/mock/mock_spec.rb +0 -193
  55. data/spec/api/proxy/proxy_spec.rb +0 -86
  56. data/spec/api/spy/spy_spec.rb +0 -49
  57. data/spec/api/strong/strong_spec.rb +0 -87
  58. data/spec/api/stub/stub_spec.rb +0 -152
  59. data/spec/core_spec_suite.rb +0 -19
  60. data/spec/environment_fixture_setup.rb +0 -8
  61. data/spec/minitest_spec_suite.rb +0 -21
  62. data/spec/proc_from_block_spec.rb +0 -14
  63. data/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +0 -67
  64. data/spec/rr/adapters/rr_methods_creator_spec.rb +0 -137
  65. data/spec/rr/adapters/rr_methods_space_spec.rb +0 -98
  66. data/spec/rr/adapters/rr_methods_spec_helper.rb +0 -11
  67. data/spec/rr/adapters/rr_methods_times_matcher_spec.rb +0 -13
  68. data/spec/rr/double_definitions/child_double_definition_creator_spec.rb +0 -112
  69. data/spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb +0 -91
  70. data/spec/rr/double_definitions/double_definition_create_spec.rb +0 -443
  71. data/spec/rr/double_injection/double_injection_spec.rb +0 -546
  72. data/spec/rr/double_injection/double_injection_verify_spec.rb +0 -29
  73. data/spec/rr/errors/rr_error_spec.rb +0 -67
  74. data/spec/rr/expectations/any_argument_expectation_spec.rb +0 -47
  75. data/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +0 -14
  76. data/spec/rr/expectations/argument_equality_expectation_spec.rb +0 -135
  77. data/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +0 -34
  78. data/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +0 -82
  79. data/spec/rr/expectations/hash_including_spec.rb +0 -17
  80. data/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +0 -59
  81. data/spec/rr/expectations/satisfy_spec.rb +0 -14
  82. data/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +0 -22
  83. data/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +0 -37
  84. data/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +0 -43
  85. data/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +0 -15
  86. data/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +0 -58
  87. data/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +0 -35
  88. data/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +0 -39
  89. data/spec/rr/minitest/minitest_integration_test.rb +0 -59
  90. data/spec/rr/minitest/test_helper.rb +0 -7
  91. data/spec/rr/rspec/invocation_matcher_spec.rb +0 -279
  92. data/spec/rr/rspec/rspec_adapter_spec.rb +0 -63
  93. data/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +0 -31
  94. data/spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb +0 -11
  95. data/spec/rr/rspec/rspec_usage_spec.rb +0 -86
  96. data/spec/rr/space/hash_with_object_id_key_spec.rb +0 -88
  97. data/spec/rr/space/space_spec.rb +0 -596
  98. data/spec/rr/test_unit/test_helper.rb +0 -7
  99. data/spec/rr/test_unit/test_unit_backtrace_test.rb +0 -36
  100. data/spec/rr/test_unit/test_unit_integration_test.rb +0 -59
  101. data/spec/rr/times_called_matchers/any_times_matcher_spec.rb +0 -47
  102. data/spec/rr/times_called_matchers/at_least_matcher_spec.rb +0 -55
  103. data/spec/rr/times_called_matchers/at_most_matcher_spec.rb +0 -70
  104. data/spec/rr/times_called_matchers/integer_matcher_spec.rb +0 -70
  105. data/spec/rr/times_called_matchers/proc_matcher_spec.rb +0 -55
  106. data/spec/rr/times_called_matchers/range_matcher_spec.rb +0 -76
  107. data/spec/rr/times_called_matchers/times_called_matcher_spec.rb +0 -118
  108. data/spec/rr/wildcard_matchers/anything_spec.rb +0 -24
  109. data/spec/rr/wildcard_matchers/boolean_spec.rb +0 -36
  110. data/spec/rr/wildcard_matchers/duck_type_spec.rb +0 -52
  111. data/spec/rr/wildcard_matchers/is_a_spec.rb +0 -32
  112. data/spec/rr/wildcard_matchers/numeric_spec.rb +0 -32
  113. data/spec/rr/wildcard_matchers/range_spec.rb +0 -35
  114. data/spec/rr/wildcard_matchers/regexp_spec.rb +0 -43
  115. data/spec/rr_spec.rb +0 -28
  116. data/spec/rspec_spec_suite.rb +0 -17
  117. data/spec/spec.opts +0 -10
  118. data/spec/spec_helper.rb +0 -41
  119. data/spec/spec_suite.rb +0 -54
  120. data/spec/spy_verification_spec.rb +0 -129
  121. data/spec/test_unit_spec_suite.rb +0 -21
@@ -1,29 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Injections
5
- describe DoubleInjection, "#verify" do
6
- it_should_behave_like "Swapped Space"
7
- attr_reader :subject, :method_name, :double_injection
8
- before do
9
- @subject = Object.new
10
- @method_name = :foobar
11
- subject.methods.should_not include(method_name.to_s)
12
- @double_injection = ::RR::Injections::DoubleInjection.find_or_create_by_subject(subject, method_name)
13
- end
14
-
15
- it "verifies each double was met" do
16
- double = RR::Double.new(
17
- double_injection,
18
- RR::DoubleDefinitions::DoubleDefinition.new(RR::DoubleDefinitions::DoubleDefinitionCreate.new)
19
- )
20
- double_injection.register_double double
21
-
22
- double.definition.with(1).once.returns {nil}
23
- lambda {double_injection.verify}.should raise_error(RR::Errors::TimesCalledError)
24
- subject.foobar(1)
25
- lambda {double_injection.verify}.should_not raise_error
26
- end
27
- end
28
- end
29
- end
@@ -1,67 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Errors
5
- describe RRError do
6
- describe "#backtrace" do
7
- before do
8
- @original_trim_backtrace = RR.trim_backtrace
9
- end
10
- after do
11
- RR.trim_backtrace = @original_trim_backtrace
12
- end
13
-
14
- it "does not include the rr library files when trim_backtrace is true" do
15
- RR.trim_backtrace = true
16
-
17
- error = nil
18
- begin
19
- obj = Object.new
20
- mock(obj).foobar
21
- RR.verify_double(obj, :foobar)
22
- rescue RRError=> e
23
- error = e
24
- end
25
- backtrace = error.backtrace.join("\n")
26
-
27
- backtrace.should_not include("lib/rr")
28
- end
29
-
30
- it "includes the rr library files when trim_backtrace is false" do
31
- RR.trim_backtrace = false
32
-
33
- error = nil
34
- begin
35
- obj = Object.new
36
- mock(obj).foobar
37
- RR.verify_double(obj, :foobar)
38
- rescue RRError=> e
39
- error = e
40
- end
41
- backtrace = error.backtrace.join("\n")
42
-
43
- backtrace.should include("lib/rr")
44
- end
45
-
46
- it "returns custom backtrace when backtrace is set" do
47
- error = RRError.new
48
- custom_backtrace = caller
49
- error.backtrace = custom_backtrace
50
- error.backtrace.should == custom_backtrace
51
- end
52
-
53
- it "returns normal backtrace when backtrace is not set" do
54
- error = nil
55
- expected_line = __LINE__ + 2
56
- begin
57
- raise RRError
58
- rescue RRError => e
59
- error = e
60
- end
61
- error.backtrace.first.should include(__FILE__)
62
- error.backtrace.first.should include(expected_line.to_s)
63
- end
64
- end
65
- end
66
- end
67
- end
@@ -1,47 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Expectations
5
- describe AnyArgumentExpectation do
6
- attr_reader :expectation
7
- before do
8
- @expectation = AnyArgumentExpectation.new
9
- end
10
-
11
- describe "#expected_arguments" do
12
- it "returns an empty array" do
13
- expectation.expected_arguments.should == []
14
- end
15
- end
16
-
17
- describe "==" do
18
- it "returns true when comparing with another AnyArgumentExpectation" do
19
- expectation.should == AnyArgumentExpectation.new
20
- end
21
-
22
- it "returns false when comparing with ArgumentEqualityExpectation" do
23
- expectation.should_not == ArgumentEqualityExpectation.new(1)
24
- end
25
- end
26
-
27
- describe "#exact_match?" do
28
- it "returns false" do
29
- expectation.should_not be_exact_match(1, 2, 3)
30
- expectation.should_not be_exact_match(1, 2)
31
- expectation.should_not be_exact_match(1)
32
- expectation.should_not be_exact_match()
33
- expectation.should_not be_exact_match("does not match")
34
- end
35
- end
36
-
37
- describe "#wildcard_match?" do
38
- it "returns true" do
39
- expectation = AnyArgumentExpectation.new
40
- expectation.should be_wildcard_match(1, 2, 3)
41
- expectation.should be_wildcard_match("whatever")
42
- expectation.should be_wildcard_match("whatever", "else")
43
- end
44
- end
45
- end
46
- end
47
- end
@@ -1,14 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Expectations
5
- describe ArgumentEqualityExpectation do
6
- context "when matching anything" do
7
- attr_reader :expectation
8
- before do
9
- @expectation = ArgumentEqualityExpectation.new(anything)
10
- end
11
- end
12
- end
13
- end
14
- end
@@ -1,135 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Expectations
5
- describe ArgumentEqualityExpectation do
6
- attr_reader :expectation
7
- before do
8
- @expectation = ArgumentEqualityExpectation.new(1, 2, 3)
9
- end
10
-
11
- describe "#expected_arguments" do
12
- it "returns the passed in expected_arguments" do
13
- expectation.expected_arguments.should == [1, 2, 3]
14
- end
15
- end
16
-
17
- describe "==" do
18
- it "returns true when passed in expected_arguments are equal" do
19
- expectation.should == ArgumentEqualityExpectation.new(1, 2, 3)
20
- end
21
-
22
- it "returns false when passed in expected_arguments are not equal" do
23
- expectation.should_not == ArgumentEqualityExpectation.new(1, 2)
24
- expectation.should_not == ArgumentEqualityExpectation.new(1)
25
- expectation.should_not == ArgumentEqualityExpectation.new(:something)
26
- expectation.should_not == ArgumentEqualityExpectation.new()
27
- end
28
- end
29
-
30
- describe "#exact_match?" do
31
- context "when all arguments exactly match" do
32
- it "returns true" do
33
- expectation.should be_exact_match(1, 2, 3)
34
- end
35
- end
36
-
37
- context "when all arguments do not exactly match" do
38
- it "returns false" do
39
- expectation.should_not be_exact_match(1, 2)
40
- expectation.should_not be_exact_match(1)
41
- expectation.should_not be_exact_match()
42
- expectation.should_not be_exact_match("does not match")
43
- end
44
- end
45
- end
46
-
47
- describe "#wildcard_match?" do
48
- context "when not an exact match" do
49
- it "returns false" do
50
- expectation = ArgumentEqualityExpectation.new(1)
51
- expectation.should_not be_wildcard_match(1, 2, 3)
52
- expectation.should_not be_wildcard_match("whatever")
53
- expectation.should_not be_wildcard_match("whatever", "else")
54
- end
55
- end
56
-
57
- context "when an exact match" do
58
- it "returns true" do
59
- expectation = ArgumentEqualityExpectation.new(1, 2)
60
- expectation.should be_wildcard_match(1, 2)
61
- expectation.should_not be_wildcard_match(1)
62
- expectation.should_not be_wildcard_match("whatever", "else")
63
- end
64
- end
65
-
66
- context "when not passed correct number of arguments" do
67
- it "returns false" do
68
- expectation.should_not be_wildcard_match()
69
- expectation.should_not be_wildcard_match(Object.new, Object.new)
70
- end
71
- end
72
- end
73
-
74
- describe "Functional spec" do
75
- class ArgumentEqualityFunctionalFixture
76
- attr_reader :arg1, :arg2
77
- def initialize(arg1, arg2)
78
- @arg1, @arg2 = arg1, arg2
79
- end
80
-
81
- def ==(other)
82
- arg1 == (other.arg1) &&
83
- arg2 == (other.arg2)
84
- end
85
-
86
- def eql?(other)
87
- arg1.eql?(other.arg1) &&
88
- arg2.eql?(other.arg2)
89
- end
90
- end
91
-
92
- before(:each) do
93
- @predicate1 = 'first' # these should be mocks, waiting on rr bug fix
94
- @predicate2 = 'second'
95
- @predicate3 = 'third'
96
- end
97
-
98
- describe "when mock.proxy ==" do
99
- it "does not have infinite recursion" do
100
- mock.proxy(@predicate1) == @predicate1
101
- mock.proxy(@predicate2) == @predicate2
102
- ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2).should == ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2)
103
-
104
- mock.proxy(@predicate1) == @predicate1
105
- mock.proxy(@predicate2) == @predicate3
106
- ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2).should_not == ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate3)
107
- end
108
-
109
- it "matches Hashes properly (using ==)" do
110
- mock.proxy(@predicate1) == {:foo => :bar}
111
- @predicate1 == {:foo => :bar}
112
- end
113
- end
114
-
115
- describe "when mock.proxy .eql?" do
116
- it "does not have infinite recursion" do
117
- mock.proxy(@predicate1).eql? @predicate1
118
- mock.proxy(@predicate2).eql? @predicate2
119
- ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2).should be_eql(ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2))
120
-
121
- mock.proxy(@predicate1).eql? @predicate1
122
- mock.proxy(@predicate2).eql? @predicate3
123
- ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2).should_not be_eql(ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate3))
124
- end
125
-
126
- it "matches Hashes properly (using ==)" do
127
- mock.proxy(@predicate1).eql?({:foo => :bar})
128
- @predicate1.eql?({:foo => :bar})
129
- end
130
- end
131
-
132
- end
133
- end
134
- end
135
- end
@@ -1,34 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Expectations
5
- describe ArgumentEqualityExpectation do
6
- context "with a boolean matcher" do
7
- attr_reader :expectation
8
-
9
- before do
10
- @expectation = ArgumentEqualityExpectation.new(boolean)
11
- end
12
-
13
- describe "#wildcard_match?" do
14
- before do
15
- expectation = ArgumentEqualityExpectation.new(boolean)
16
- end
17
-
18
- context "when passed a Boolean" do
19
- it "returns true" do
20
- expectation.should be_wildcard_match(true)
21
- expectation.should be_wildcard_match(false)
22
- end
23
- end
24
-
25
- context "when not passed a Boolean" do
26
- it "returns false" do
27
- expectation.should_not be_wildcard_match(:not_a_boolean)
28
- end
29
- end
30
- end
31
- end
32
- end
33
- end
34
- end
@@ -1,82 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Expectations
5
- describe ArgumentEqualityExpectation, "with HashIncluding argument" do
6
- attr_reader :expectation, :expected_hash
7
-
8
- before do
9
- @expected_hash = {:texas => "Austin", :maine => "Augusta"}
10
- end
11
-
12
- describe "#exact_match?" do
13
- before do
14
- @expectation = ArgumentEqualityExpectation.new(hash_including(expected_hash))
15
- end
16
-
17
- it "returns true when passed in a HashIncluding matcher with the same hash" do
18
- expectation.should be_exact_match(RR::WildcardMatchers::HashIncluding.new(expected_hash))
19
- end
20
-
21
- it "returns false when passed in a HashIncluding matcher with a different argument list" do
22
- expectation.should_not be_exact_match(RR::WildcardMatchers::HashIncluding.new(:foo => 1))
23
- end
24
-
25
- it "returns false otherwise" do
26
- expectation.should_not be_exact_match("hello")
27
- expectation.should_not be_exact_match(:hello)
28
- expectation.should_not be_exact_match(1)
29
- expectation.should_not be_exact_match(nil)
30
- expectation.should_not be_exact_match(true)
31
- expectation.should_not be_exact_match()
32
- end
33
- end
34
-
35
- describe "#wildcard_match?" do
36
- before do
37
- @expectation = ArgumentEqualityExpectation.new(hash_including(expected_hash))
38
- end
39
-
40
- it "returns true when hash contains same key/values as the expectation" do
41
- expectation.should be_wildcard_match(expected_hash)
42
- end
43
-
44
- it "returns true when hash contains at least expectation's key/values" do
45
- expectation.should be_wildcard_match(expected_hash.merge(:oregon => "Salem"))
46
- end
47
-
48
- it "returns true when passed the same hash, even after the original is modified" do
49
- original_expected_hash = expected_hash.clone
50
- expected_hash[:texas] = nil
51
- expectation.should be_wildcard_match(original_expected_hash)
52
- end
53
-
54
- it "returns true even if one of the expectation's values is nil" do
55
- expectation = ArgumentEqualityExpectation.new(hash_including(:foo => nil))
56
- expectation.should be_wildcard_match({:foo => nil})
57
- end
58
-
59
- it "returns false when hash matches only some required key/values" do
60
- expectation.should_not be_wildcard_match({:texas => "Austin"})
61
- end
62
-
63
- it "returns false when hash matches all the keys but not all the values" do
64
- expectation.should_not be_wildcard_match({:texas => "Austin", :maine => "Portland"})
65
- end
66
-
67
- it "returns false when passed a hash that matches all values but not all keys" do
68
- expectation.should_not be_wildcard_match({:texas => "Austin", :georgia => "Augusta"})
69
- end
70
-
71
- it "returns true when an exact match" do
72
- expectation.should be_wildcard_match(hash_including(expected_hash))
73
- end
74
-
75
- it "returns false when not passed correct number of arguments" do
76
- expectation.should_not be_wildcard_match()
77
- expectation.should_not be_wildcard_match(:a, :b)
78
- end
79
- end
80
- end
81
- end
82
- end
@@ -1,17 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module WildcardMatchers
5
- describe HashIncluding do
6
- describe "#inspect" do
7
- it "returns hash_including with expected key/values" do
8
- expected_hash = {:foo => "bar", :baz => "qux"}
9
- matcher = HashIncluding.new(expected_hash)
10
- matcher.inspect.should include("hash_including(")
11
- matcher.inspect.should include(':foo=>"bar"')
12
- matcher.inspect.should include(':baz=>"qux"')
13
- end
14
- end
15
- end
16
- end
17
- end
@@ -1,59 +0,0 @@
1
- require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
2
-
3
- module RR
4
- module Expectations
5
- describe ArgumentEqualityExpectation, "with Satisfy argument" do
6
- attr_reader :expectation, :expectation_proc, :expected_value, :satisfy_matcher
7
-
8
- before do
9
- @expected_value = :foo
10
- @expectation_proc = lambda {|argument| argument == expected_value}
11
- @satisfy_matcher = satisfy(&expectation_proc)
12
- @expectation = ArgumentEqualityExpectation.new(satisfy_matcher)
13
- end
14
-
15
- describe "#exact_match?" do
16
- before do
17
- end
18
-
19
- it "returns true when passed a Satisfy matcher with the same proc" do
20
- expectation.should be_exact_match(RR::WildcardMatchers::Satisfy.new(expectation_proc))
21
- end
22
-
23
- it "returns false when passed a Satisfy matcher with another proc" do
24
- expectation.should_not be_exact_match(RR::WildcardMatchers::Satisfy.new(lambda {}))
25
- end
26
-
27
- it "returns false otherwise" do
28
- expectation.should_not be_exact_match("hello")
29
- expectation.should_not be_exact_match(:hello)
30
- expectation.should_not be_exact_match(1)
31
- expectation.should_not be_exact_match(nil)
32
- expectation.should_not be_exact_match(true)
33
- expectation.should_not be_exact_match()
34
- end
35
- end
36
-
37
- describe "#wildcard_match?" do
38
- it "returns true when the proc returns a truthy value" do
39
- (!!expectation_proc.call(expected_value)).should be_true
40
- expectation.should be_wildcard_match(expected_value)
41
- end
42
-
43
- it "returns false when the proc returns a falsey value" do
44
- (!!expectation_proc.call(:bar)).should be_false
45
- expectation.should_not be_wildcard_match(:bar)
46
- end
47
-
48
- it "returns true when an exact match" do
49
- expectation.should be_wildcard_match(satisfy_matcher)
50
- end
51
-
52
- it "returns false when not passed correct number of arguments" do
53
- expectation.should_not be_wildcard_match()
54
- expectation.should_not be_wildcard_match(:a, :b)
55
- end
56
- end
57
- end
58
- end
59
- end