rr 1.0.5 → 1.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- data/CHANGES.md +24 -0
- data/LICENSE +2 -2
- data/README.md +124 -741
- data/VERSION +1 -1
- data/lib/rr.rb +2 -103
- data/lib/rr/adapters/minitest.rb +21 -13
- data/lib/rr/adapters/minitest_active_support.rb +34 -0
- data/lib/rr/adapters/none.rb +17 -0
- data/lib/rr/adapters/{rspec.rb → rspec/invocation_matcher.rb} +2 -27
- data/lib/rr/adapters/rspec_1.rb +42 -0
- data/lib/rr/adapters/rspec_2.rb +24 -0
- data/lib/rr/adapters/test_unit_1.rb +54 -0
- data/lib/rr/adapters/test_unit_2.rb +13 -0
- data/lib/rr/adapters/test_unit_2_active_support.rb +35 -0
- data/lib/rr/autohook.rb +43 -0
- data/lib/rr/core_ext/array.rb +12 -0
- data/lib/rr/core_ext/enumerable.rb +16 -0
- data/lib/rr/core_ext/hash.rb +20 -0
- data/lib/rr/core_ext/range.rb +8 -0
- data/lib/rr/core_ext/regexp.rb +8 -0
- data/lib/rr/double.rb +4 -4
- data/lib/rr/double_definitions/double_definition.rb +9 -3
- data/lib/rr/errors.rb +21 -0
- data/lib/rr/expectations/argument_equality_expectation.rb +10 -7
- data/lib/rr/expectations/times_called_expectation.rb +2 -8
- data/lib/rr/injections/double_injection.rb +1 -1
- data/lib/rr/method_dispatches/base_method_dispatch.rb +1 -1
- data/lib/rr/recorded_calls.rb +12 -12
- data/lib/rr/space.rb +5 -3
- data/lib/rr/times_called_matchers/never_matcher.rb +2 -2
- data/lib/rr/wildcard_matchers/anything.rb +2 -2
- data/lib/rr/wildcard_matchers/boolean.rb +3 -7
- data/lib/rr/wildcard_matchers/duck_type.rb +11 -15
- data/lib/rr/wildcard_matchers/hash_including.rb +14 -13
- data/lib/rr/wildcard_matchers/is_a.rb +6 -7
- data/lib/rr/wildcard_matchers/satisfy.rb +8 -8
- data/lib/rr/without_autohook.rb +112 -0
- data/rr.gemspec +28 -0
- data/spec/global_helper.rb +12 -0
- data/spec/suite.rb +93 -0
- data/spec/suites/common/adapter_tests.rb +37 -0
- data/spec/suites/common/rails_integration_test.rb +175 -0
- data/spec/suites/common/test_unit_tests.rb +25 -0
- data/spec/suites/minitest/integration/minitest_test.rb +13 -0
- data/spec/suites/minitest/test_helper.rb +3 -0
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +20 -0
- data/spec/suites/rspec_1/integration/test_unit_1_rails_spec.rb +19 -0
- data/spec/suites/rspec_1/integration/test_unit_2_rails_spec.rb +18 -0
- data/spec/suites/rspec_1/spec_helper.rb +24 -0
- data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +47 -0
- data/spec/suites/rspec_2/functional/dont_allow_spec.rb +12 -0
- data/spec/suites/rspec_2/functional/dsl_spec.rb +13 -0
- data/spec/suites/rspec_2/functional/instance_of_spec.rb +14 -0
- data/spec/suites/rspec_2/functional/mock_spec.rb +241 -0
- data/spec/suites/rspec_2/functional/proxy_spec.rb +136 -0
- data/spec/suites/rspec_2/functional/spy_spec.rb +41 -0
- data/spec/suites/rspec_2/functional/strong_spec.rb +79 -0
- data/spec/suites/rspec_2/functional/stub_spec.rb +190 -0
- data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +128 -0
- data/spec/suites/rspec_2/integration/minitest_rails_spec.rb +15 -0
- data/spec/suites/rspec_2/integration/rspec_2_spec.rb +20 -0
- data/spec/suites/rspec_2/integration/test_unit_rails_spec.rb +14 -0
- data/spec/suites/rspec_2/spec_helper.rb +27 -0
- data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +32 -0
- data/spec/suites/rspec_2/support/shared_examples/space.rb +13 -0
- data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +9 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/double_creators_spec.rb +135 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/space_spec.rb +101 -0
- data/spec/suites/rspec_2/unit/adapters/rr_methods/wildcard_matchers_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/adapters/rspec/invocation_matcher_spec.rb +297 -0
- data/spec/suites/rspec_2/unit/adapters/rspec_spec.rb +85 -0
- data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +39 -0
- data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +81 -0
- data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +55 -0
- data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +41 -0
- data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +41 -0
- data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +114 -0
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +93 -0
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +446 -0
- data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +67 -0
- data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +48 -0
- data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +14 -0
- data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +135 -0
- data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +30 -0
- data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
- data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +61 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +22 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +37 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +43 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +58 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +35 -0
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +39 -0
- data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +88 -0
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +545 -0
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +32 -0
- data/spec/suites/rspec_2/unit/proc_from_block_spec.rb +14 -0
- data/spec/suites/rspec_2/unit/rr_spec.rb +28 -0
- data/spec/suites/rspec_2/unit/space_spec.rb +595 -0
- data/spec/suites/rspec_2/unit/spy_verification_spec.rb +133 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +46 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +54 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +69 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +54 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +75 -0
- data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +117 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +33 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +45 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +64 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +64 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +55 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +46 -0
- data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +57 -0
- data/spec/suites/test_unit_1/integration/test_unit_1_test.rb +6 -0
- data/spec/suites/test_unit_1/test_helper.rb +7 -0
- data/spec/suites/test_unit_2/integration/test_unit_2_test.rb +6 -0
- data/spec/suites/test_unit_2/test_helper.rb +3 -0
- metadata +183 -19
- data/Gemfile +0 -9
- data/Rakefile +0 -34
- data/lib/rr/adapters/rspec2.rb +0 -30
- data/lib/rr/adapters/test_unit.rb +0 -33
- data/lib/rr/errors/argument_equality_error.rb +0 -6
- data/lib/rr/wildcard_matchers/range.rb +0 -7
- data/lib/rr/wildcard_matchers/regexp.rb +0 -7
- data/spec/runner.rb +0 -41
@@ -0,0 +1,15 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
require File.expand_path('../../../common/rails_integration_test', __FILE__)
|
3
|
+
|
4
|
+
describe 'Integration between MiniTest and Rails' do
|
5
|
+
include IntegrationWithRails
|
6
|
+
|
7
|
+
def bootstrap
|
8
|
+
<<-EOT
|
9
|
+
require 'rubygems'
|
10
|
+
require 'minitest/unit'
|
11
|
+
require 'rails'
|
12
|
+
require 'active_support'
|
13
|
+
EOT
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
require File.expand_path('../../../common/adapter_tests', __FILE__)
|
3
|
+
|
4
|
+
describe 'Integration with RSpec 2' do
|
5
|
+
include AdapterTests
|
6
|
+
|
7
|
+
def assert_equal(expected, actual)
|
8
|
+
expect(actual).to eq actual
|
9
|
+
end
|
10
|
+
|
11
|
+
def assert_raise(error, message=nil, &block)
|
12
|
+
expect(&block).to raise_error(error, message)
|
13
|
+
end
|
14
|
+
|
15
|
+
instance_methods.each do |method_name|
|
16
|
+
if method_name =~ /^test_(.+)$/
|
17
|
+
it(method_name) { __send__(method_name) }
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require File.expand_path('../../../common/rails_integration_test', __FILE__)
|
2
|
+
|
3
|
+
describe 'Integration between TestUnit and Rails' do
|
4
|
+
include IntegrationWithRails
|
5
|
+
|
6
|
+
def bootstrap
|
7
|
+
<<-EOT
|
8
|
+
require 'rubygems'
|
9
|
+
require 'test/unit'
|
10
|
+
require 'rails'
|
11
|
+
require 'active_support'
|
12
|
+
EOT
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'rspec/core'
|
2
|
+
require 'rspec/expectations'
|
3
|
+
require 'rspec/autorun'
|
4
|
+
|
5
|
+
require File.expand_path('../../../global_helper', __FILE__)
|
6
|
+
|
7
|
+
module ExampleMethods
|
8
|
+
def eigen(object)
|
9
|
+
class << object; self; end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
module ExampleGroupMethods
|
14
|
+
def macro(name, &implementation)
|
15
|
+
(class << self; self; end).class_eval do
|
16
|
+
define_method(name, &implementation)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
RSpec.configure do |c|
|
22
|
+
c.include ExampleMethods
|
23
|
+
c.extend ExampleGroupMethods
|
24
|
+
end
|
25
|
+
|
26
|
+
Dir[ File.expand_path('../shared/*.rb', __FILE__) ].each {|fn| require fn }
|
27
|
+
Dir[ File.expand_path('../support/**/*.rb', __FILE__) ].each {|fn| require fn }
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module WildcardMatcherMatchers
|
2
|
+
extend RSpec::Matchers::DSL
|
3
|
+
|
4
|
+
matcher :equal_match do |value|
|
5
|
+
match { |matcher|
|
6
|
+
matcher == value &&
|
7
|
+
matcher.eql?(value)
|
8
|
+
}
|
9
|
+
|
10
|
+
failure_message_for_should {
|
11
|
+
"Expected matcher to equal match #{value.inspect}, but it didn't"
|
12
|
+
}
|
13
|
+
|
14
|
+
failure_message_for_should_not {
|
15
|
+
"Expected matcher to not equal match #{value.inspect}, but it did"
|
16
|
+
}
|
17
|
+
end
|
18
|
+
|
19
|
+
matcher :wildcard_match do |value|
|
20
|
+
match { |matcher|
|
21
|
+
matcher.wildcard_match?(value)
|
22
|
+
}
|
23
|
+
|
24
|
+
failure_message_for_should {
|
25
|
+
"Expected matcher to wildcard equal match #{value.inspect}, but it didn't"
|
26
|
+
}
|
27
|
+
|
28
|
+
failure_message_for_should_not {
|
29
|
+
"Expected matcher to not wildcard equal match #{value.inspect}, but it did"
|
30
|
+
}
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
shared_examples_for "Swapped Space" do
|
2
|
+
attr_reader :space, :original_space
|
3
|
+
|
4
|
+
before do
|
5
|
+
@original_space = RR::Space.instance
|
6
|
+
RR::Space.instance = RR::Space.new
|
7
|
+
@space = RR::Space.instance
|
8
|
+
end
|
9
|
+
|
10
|
+
after do
|
11
|
+
RR::Space.instance = @original_space
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,135 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper")
|
2
|
+
|
3
|
+
module RR
|
4
|
+
module Adapters
|
5
|
+
describe RRMethods do
|
6
|
+
subject { Object.new }
|
7
|
+
|
8
|
+
after(:each) do
|
9
|
+
RR.reset
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "normal strategy definitions" do
|
13
|
+
attr_reader :strategy_method_name
|
14
|
+
|
15
|
+
def call_strategy(*args, &block)
|
16
|
+
__send__(strategy_method_name, *args, &block)
|
17
|
+
end
|
18
|
+
|
19
|
+
describe "#mock" do
|
20
|
+
before do
|
21
|
+
@strategy_method_name = :mock
|
22
|
+
end
|
23
|
+
|
24
|
+
context "when passing no args" do
|
25
|
+
it "returns a DoubleDefinitionCreate" do
|
26
|
+
expect(call_strategy.class).to eq RR::DoubleDefinitions::DoubleDefinitionCreate
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
context "when passed a method_name argument" do
|
31
|
+
it "creates a mock Double for method" do
|
32
|
+
double_definition = mock(subject, :foobar).returns {:baz}
|
33
|
+
expect(double_definition.times_matcher).to eq RR::TimesCalledMatchers::IntegerMatcher.new(1)
|
34
|
+
expect(double_definition.argument_expectation.class).to eq RR::Expectations::ArgumentEqualityExpectation
|
35
|
+
expect(double_definition.argument_expectation.expected_arguments).to eq []
|
36
|
+
expect(subject.foobar).to eq :baz
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe "#stub" do
|
42
|
+
before do
|
43
|
+
@strategy_method_name = :stub
|
44
|
+
end
|
45
|
+
|
46
|
+
context "when passing no args" do
|
47
|
+
it "returns a DoubleDefinitionCreate" do
|
48
|
+
expect(call_strategy.class).to eq RR::DoubleDefinitions::DoubleDefinitionCreate
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
context "when passed a method_name argument" do
|
53
|
+
it "creates a stub Double for method when passed a method_name argument" do
|
54
|
+
double_definition = stub(subject, :foobar).returns {:baz}
|
55
|
+
expect(double_definition.times_matcher).to eq RR::TimesCalledMatchers::AnyTimesMatcher.new
|
56
|
+
expect(double_definition.argument_expectation.class).to eq RR::Expectations::AnyArgumentExpectation
|
57
|
+
expect(subject.foobar).to eq :baz
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe "#dont_allow" do
|
63
|
+
before do
|
64
|
+
@strategy_method_name = :dont_allow
|
65
|
+
end
|
66
|
+
|
67
|
+
context "when passing no args" do
|
68
|
+
it "returns a DoubleDefinitionCreate" do
|
69
|
+
expect(call_strategy.class).to eq RR::DoubleDefinitions::DoubleDefinitionCreate
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
context "when passed a method_name argument_expectation" do
|
74
|
+
it "creates a mock Double for method" do
|
75
|
+
double_definition = dont_allow(subject, :foobar)
|
76
|
+
expect(double_definition.times_matcher).to eq RR::TimesCalledMatchers::NeverMatcher.new
|
77
|
+
expect(double_definition.argument_expectation.class).to eq RR::Expectations::AnyArgumentExpectation
|
78
|
+
|
79
|
+
expect {
|
80
|
+
subject.foobar
|
81
|
+
}.to raise_error(RR::Errors::TimesCalledError)
|
82
|
+
RR.reset
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe "! strategy definitions" do
|
89
|
+
attr_reader :strategy_method_name
|
90
|
+
def call_strategy(*args, &definition_eval_block)
|
91
|
+
__send__(strategy_method_name, *args, &definition_eval_block)
|
92
|
+
end
|
93
|
+
|
94
|
+
describe "#mock!" do
|
95
|
+
before do
|
96
|
+
@strategy_method_name = :mock!
|
97
|
+
end
|
98
|
+
|
99
|
+
context "when passed a method_name argument" do
|
100
|
+
it "sets #verification_strategy to Mock" do
|
101
|
+
proxy = mock!(:foobar)
|
102
|
+
expect(proxy.double_definition_create.verification_strategy.class).to eq RR::DoubleDefinitions::Strategies::Verification::Mock
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
describe "#stub!" do
|
108
|
+
before do
|
109
|
+
@strategy_method_name = :stub!
|
110
|
+
end
|
111
|
+
|
112
|
+
context "when passed a method_name argument" do
|
113
|
+
it "sets #verification_strategy to Stub" do
|
114
|
+
proxy = stub!(:foobar)
|
115
|
+
expect(proxy.double_definition_create.verification_strategy.class).to eq RR::DoubleDefinitions::Strategies::Verification::Stub
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
describe "#dont_allow!" do
|
121
|
+
before do
|
122
|
+
@strategy_method_name = :dont_allow!
|
123
|
+
end
|
124
|
+
|
125
|
+
context "when passed a method_name argument" do
|
126
|
+
it "sets #verification_strategy to DontAllow" do
|
127
|
+
proxy = dont_allow!(:foobar)
|
128
|
+
expect(proxy.double_definition_create.verification_strategy.class).to eq RR::DoubleDefinitions::Strategies::Verification::DontAllow
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
@@ -0,0 +1,101 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper")
|
2
|
+
|
3
|
+
module RR
|
4
|
+
module Adapters
|
5
|
+
describe RRMethods do
|
6
|
+
attr_reader :space, :subject_1, :subject_2, :method_name
|
7
|
+
|
8
|
+
include_examples "Swapped Space"
|
9
|
+
|
10
|
+
include RR::Adapters::RRMethods
|
11
|
+
|
12
|
+
before do
|
13
|
+
@subject_1 = Object.new
|
14
|
+
@subject_2 = Object.new
|
15
|
+
@method_name = :foobar
|
16
|
+
end
|
17
|
+
|
18
|
+
describe "#verify" do
|
19
|
+
it "aliases #rr_verify" do
|
20
|
+
expect(RRMethods.instance_method("verify")).to eq RRMethods.instance_method("rr_verify")
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "#rr_verify" do
|
25
|
+
it "verifies and deletes the double_injections" do
|
26
|
+
double_1 = ::RR::Injections::DoubleInjection.find_or_create_by_subject(subject_1, method_name)
|
27
|
+
double_1_verify_calls = 0
|
28
|
+
double_1_reset_calls = 0
|
29
|
+
(
|
30
|
+
class << double_1;
|
31
|
+
self;
|
32
|
+
end).class_eval do
|
33
|
+
define_method(:verify) do ||
|
34
|
+
double_1_verify_calls += 1
|
35
|
+
end
|
36
|
+
define_method(:reset) do ||
|
37
|
+
double_1_reset_calls += 1
|
38
|
+
end
|
39
|
+
end
|
40
|
+
double_2 = ::RR::Injections::DoubleInjection.find_or_create_by_subject(subject_2, method_name)
|
41
|
+
double_2_verify_calls = 0
|
42
|
+
double_2_reset_calls = 0
|
43
|
+
( class << double_2; self; end).class_eval do
|
44
|
+
define_method(:verify) do ||
|
45
|
+
double_2_verify_calls += 1
|
46
|
+
end
|
47
|
+
define_method(:reset) do ||
|
48
|
+
double_2_reset_calls += 1
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
rr_verify
|
53
|
+
expect(double_1_verify_calls).to eq 1
|
54
|
+
expect(double_2_verify_calls).to eq 1
|
55
|
+
expect(double_1_reset_calls).to eq 1
|
56
|
+
expect(double_1_reset_calls).to eq 1
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe "#reset" do
|
61
|
+
it "aliases #rr_reset" do
|
62
|
+
expect(RRMethods.instance_method("reset")).to eq RRMethods.instance_method("rr_reset")
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe "#rr_reset" do
|
67
|
+
it "removes the ordered doubles" do
|
68
|
+
mock(subject_1).foobar1.ordered
|
69
|
+
mock(subject_2).foobar2.ordered
|
70
|
+
|
71
|
+
::RR::Injections::DoubleInjection.instances.should_not be_empty
|
72
|
+
|
73
|
+
rr_reset
|
74
|
+
::RR::Injections::DoubleInjection.instances
|
75
|
+
expect(::RR::Injections::DoubleInjection.instances).to be_empty
|
76
|
+
end
|
77
|
+
|
78
|
+
it "resets all double_injections" do
|
79
|
+
double_1 = ::RR::Injections::DoubleInjection.find_or_create_by_subject(subject_1, method_name)
|
80
|
+
double_1_reset_calls = 0
|
81
|
+
( class << double_1; self; end).class_eval do
|
82
|
+
define_method(:reset) do ||
|
83
|
+
double_1_reset_calls += 1
|
84
|
+
end
|
85
|
+
end
|
86
|
+
double_2 = ::RR::Injections::DoubleInjection.find_or_create_by_subject(subject_2, method_name)
|
87
|
+
double_2_reset_calls = 0
|
88
|
+
( class << double_2; self; end).class_eval do
|
89
|
+
define_method(:reset) do ||
|
90
|
+
double_2_reset_calls += 1
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
rr_reset
|
95
|
+
expect(double_1_reset_calls).to eq 1
|
96
|
+
expect(double_2_reset_calls).to eq 1
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper")
|
2
|
+
|
3
|
+
module RR
|
4
|
+
module Adapters
|
5
|
+
describe RRMethods do
|
6
|
+
include RR::Adapters::RRMethods
|
7
|
+
|
8
|
+
describe "#anything" do
|
9
|
+
it "returns an Anything matcher" do
|
10
|
+
expect(anything).to eq RR::WildcardMatchers::Anything.new
|
11
|
+
end
|
12
|
+
|
13
|
+
it "rr_anything returns an Anything matcher" do
|
14
|
+
expect(rr_anything).to eq RR::WildcardMatchers::Anything.new
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe "#is_a" do
|
19
|
+
it "returns an IsA matcher" do
|
20
|
+
expect(is_a(Integer)).to eq RR::WildcardMatchers::IsA.new(Integer)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "rr_is_a returns an IsA matcher" do
|
24
|
+
expect(rr_is_a(Integer)).to eq RR::WildcardMatchers::IsA.new(Integer)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "#numeric" do
|
29
|
+
it "returns an Numeric matcher" do
|
30
|
+
expect(numeric).to eq RR::WildcardMatchers::Numeric.new
|
31
|
+
end
|
32
|
+
|
33
|
+
it "rr_numeric returns an Numeric matcher" do
|
34
|
+
expect(rr_numeric).to eq RR::WildcardMatchers::Numeric.new
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "#boolean" do
|
39
|
+
it "returns an Boolean matcher" do
|
40
|
+
expect(boolean).to eq RR::WildcardMatchers::Boolean.new
|
41
|
+
end
|
42
|
+
|
43
|
+
it "rr_boolean returns an Boolean matcher" do
|
44
|
+
expect(rr_boolean).to eq RR::WildcardMatchers::Boolean.new
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "#duck_type" do
|
49
|
+
it "returns a DuckType matcher" do
|
50
|
+
expect(duck_type(:one, :two)).to eq RR::WildcardMatchers::DuckType.new(:one, :two)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "rr_duck_type returns a DuckType matcher" do
|
54
|
+
expect(rr_duck_type(:one, :two)).to eq RR::WildcardMatchers::DuckType.new(:one, :two)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe "#any_times" do
|
60
|
+
it "returns an AnyTimesMatcher" do
|
61
|
+
expect(any_times).to eq RR::TimesCalledMatchers::AnyTimesMatcher.new
|
62
|
+
end
|
63
|
+
|
64
|
+
it "rr_any_times returns an AnyTimesMatcher" do
|
65
|
+
expect(rr_any_times).to eq RR::TimesCalledMatchers::AnyTimesMatcher.new
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|