rr 1.1.1.rc1 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CREDITS.md +61 -0
- data/VERSION +1 -1
- data/doc/01_test_double.md +16 -0
- data/doc/02_syntax_comparison.md +96 -0
- data/doc/03_api_overview.md +616 -0
- data/rr.gemspec +6 -6
- metadata +12 -230
- data/spec/global_helper.rb +0 -53
- data/spec/spec.opts +0 -2
- data/spec/suite.rb +0 -107
- data/spec/suites/common/adapter_integration_tests.rb +0 -160
- data/spec/suites/common/adapter_tests.rb +0 -43
- data/spec/suites/common/rails_integration_tests.rb +0 -106
- data/spec/suites/common/test_unit_tests.rb +0 -21
- data/spec/suites/minitest/integration/minitest_test.rb +0 -13
- data/spec/suites/minitest/test_helper.rb +0 -7
- data/spec/suites/minitest_4/integration/minitest_test.rb +0 -13
- data/spec/suites/minitest_4/test_helper.rb +0 -7
- data/spec/suites/rspec_1/helper.rb +0 -24
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +0 -77
- data/spec/suites/rspec_1/integration/test_unit_1_spec.rb +0 -41
- data/spec/suites/rspec_1/integration/test_unit_2_spec.rb +0 -57
- data/spec/suites/rspec_1/spec_helper.rb +0 -3
- data/spec/suites/rspec_1_rails_2/integration/test_unit_1_rails_2_spec.rb +0 -53
- data/spec/suites/rspec_1_rails_2/integration/test_unit_2_rails_2_spec.rb +0 -57
- data/spec/suites/rspec_1_rails_2/spec_helper.rb +0 -3
- data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +0 -47
- data/spec/suites/rspec_2/functional/dont_allow_spec.rb +0 -12
- data/spec/suites/rspec_2/functional/dsl_spec.rb +0 -13
- data/spec/suites/rspec_2/functional/instance_of_spec.rb +0 -14
- data/spec/suites/rspec_2/functional/mock_spec.rb +0 -241
- data/spec/suites/rspec_2/functional/proxy_spec.rb +0 -136
- data/spec/suites/rspec_2/functional/spy_spec.rb +0 -41
- data/spec/suites/rspec_2/functional/strong_spec.rb +0 -79
- data/spec/suites/rspec_2/functional/stub_spec.rb +0 -190
- data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +0 -128
- data/spec/suites/rspec_2/helper.rb +0 -27
- data/spec/suites/rspec_2/integration/minitest_4_spec.rb +0 -57
- data/spec/suites/rspec_2/integration/minitest_spec.rb +0 -57
- data/spec/suites/rspec_2/integration/rspec_2_spec.rb +0 -126
- data/spec/suites/rspec_2/integration/test_unit_200_spec.rb +0 -57
- data/spec/suites/rspec_2/integration/test_unit_2_spec.rb +0 -57
- data/spec/suites/rspec_2/spec_helper.rb +0 -3
- data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +0 -32
- data/spec/suites/rspec_2/support/shared_examples/space.rb +0 -13
- data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +0 -9
- data/spec/suites/rspec_2/unit/adapters/rr_methods/double_creators_spec.rb +0 -135
- data/spec/suites/rspec_2/unit/adapters/rr_methods/space_spec.rb +0 -101
- data/spec/suites/rspec_2/unit/adapters/rr_methods/wildcard_matchers_spec.rb +0 -69
- data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +0 -39
- data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +0 -81
- data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +0 -55
- data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +0 -41
- data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +0 -41
- data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +0 -114
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +0 -93
- data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +0 -446
- data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +0 -67
- data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +0 -48
- data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +0 -14
- data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +0 -135
- data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +0 -30
- data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +0 -82
- data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +0 -61
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +0 -22
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +0 -37
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +0 -43
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +0 -58
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +0 -35
- data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +0 -39
- data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +0 -88
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +0 -545
- data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +0 -32
- data/spec/suites/rspec_2/unit/integrations/rspec/invocation_matcher_spec.rb +0 -297
- data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +0 -85
- data/spec/suites/rspec_2/unit/proc_from_block_spec.rb +0 -14
- data/spec/suites/rspec_2/unit/rr_spec.rb +0 -28
- data/spec/suites/rspec_2/unit/space_spec.rb +0 -595
- data/spec/suites/rspec_2/unit/spy_verification_spec.rb +0 -133
- data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +0 -46
- data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +0 -54
- data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +0 -69
- data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +0 -69
- data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +0 -54
- data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +0 -75
- data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +0 -117
- data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +0 -33
- data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +0 -45
- data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +0 -64
- data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +0 -64
- data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +0 -55
- data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +0 -46
- data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +0 -57
- data/spec/suites/rspec_2_rails_3/integration/minitest_4_rails_3_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_3/integration/test_unit_200_rails_3_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_3/integration/test_unit_2_rails_3_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_3/spec_helper.rb +0 -3
- data/spec/suites/rspec_2_rails_4/integration/minitest_4_rails_4_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_4/integration/rspec_2_rails_4_spec.rb +0 -156
- data/spec/suites/rspec_2_rails_4/integration/test_unit_200_rails_4_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_4/integration/test_unit_2_rails_4_spec.rb +0 -66
- data/spec/suites/rspec_2_rails_4/spec_helper.rb +0 -3
- data/spec/suites/test_unit_1/integration/test_unit_1_test.rb +0 -10
- data/spec/suites/test_unit_1/test_helper.rb +0 -10
- data/spec/suites/test_unit_2/integration/test_unit_2_test.rb +0 -10
- data/spec/suites/test_unit_2/test_helper.rb +0 -6
- data/spec/suites/test_unit_200/integration/test_unit_200_test.rb +0 -10
- data/spec/suites/test_unit_200/test_helper.rb +0 -6
- data/spec/suites/test_unit_200_rails_3/integration/test_unit_200_rails_3_test.rb +0 -10
- data/spec/suites/test_unit_200_rails_3/test_helper.rb +0 -7
- data/spec/suites/test_unit_200_rails_4/integration/test_unit_200_rails_4_test.rb +0 -10
- data/spec/suites/test_unit_200_rails_4/test_helper.rb +0 -7
- data/spec/suites/test_unit_2_rails_2/integration/test_unit_2_rails_2_test.rb +0 -10
- data/spec/suites/test_unit_2_rails_2/test_helper.rb +0 -7
- data/spec/suites/test_unit_2_rails_3/integration/test_unit_2_rails_3_test.rb +0 -10
- data/spec/suites/test_unit_2_rails_3/test_helper.rb +0 -7
- data/spec/suites/test_unit_2_rails_4/integration/test_unit_2_rails_4_test.rb +0 -10
- data/spec/suites/test_unit_2_rails_4/test_helper.rb +0 -7
@@ -1,135 +0,0 @@
|
|
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
|
@@ -1,101 +0,0 @@
|
|
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
|
@@ -1,69 +0,0 @@
|
|
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
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require File.expand_path('../../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe Array do
|
4
|
-
include WildcardMatcherMatchers
|
5
|
-
|
6
|
-
describe '#wildcard_match?' do
|
7
|
-
context 'when this Array has items that respond to #wildcard_match?' do
|
8
|
-
subject { [hash_including({:foo => 'bar'})] }
|
9
|
-
|
10
|
-
it "returns true if all items in the given Array wildcard-match corresponding items in this Array" do
|
11
|
-
should wildcard_match([{:foo => 'bar', :baz => 'quux'}])
|
12
|
-
end
|
13
|
-
|
14
|
-
it "returns true if any items in the given Array do not wildcard-match corresponding items in this Array" do
|
15
|
-
should_not wildcard_match([{:foo => 'bat', :baz => 'quux'}])
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context 'when this Array has items that do not respond to #wildcard_match?' do
|
20
|
-
subject { [:a_symbol] }
|
21
|
-
|
22
|
-
it "returns true if all items in the given Array equal-match corresponding items in this Array" do
|
23
|
-
should wildcard_match([:a_symbol])
|
24
|
-
end
|
25
|
-
|
26
|
-
it "returns true if any items in the given Array do not equal-match corresponding items in this Array" do
|
27
|
-
should_not wildcard_match([:another_symbol])
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context 'when not given an Array' do
|
32
|
-
subject { [{:foo => 'bar'}] }
|
33
|
-
|
34
|
-
it "returns false" do
|
35
|
-
should_not wildcard_match(:something_else)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
@@ -1,81 +0,0 @@
|
|
1
|
-
require File.expand_path('../../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe Enumerable do
|
4
|
-
include WildcardMatcherMatchers
|
5
|
-
|
6
|
-
let(:klass) {
|
7
|
-
Class.new do
|
8
|
-
include Enumerable
|
9
|
-
|
10
|
-
def initialize(*items)
|
11
|
-
@arr = items
|
12
|
-
end
|
13
|
-
|
14
|
-
def each(&block)
|
15
|
-
@arr.each(&block)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
}
|
19
|
-
|
20
|
-
describe '#wildcard_match?' do
|
21
|
-
context 'when this Enumerable has items that respond to #wildcard_match?' do
|
22
|
-
subject { klass.new(hash_including({:foo => 'bar'})) }
|
23
|
-
|
24
|
-
it "returns true if all items in the given Enumerable wildcard-match corresponding items in this Enumerable" do
|
25
|
-
should wildcard_match([{:foo => 'bar', :baz => 'quux'}])
|
26
|
-
end
|
27
|
-
|
28
|
-
it "returns true if any items in the given Enumerable do not wildcard-match corresponding items in this Enumerable" do
|
29
|
-
should_not wildcard_match([{:foo => 'bat', :baz => 'quux'}])
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
context 'when this Enumerable has items that do not respond to #wildcard_match?' do
|
34
|
-
subject { klass.new(:a_symbol) }
|
35
|
-
|
36
|
-
it "returns true if all items in the given Enumerable equal-match corresponding items in this Enumerable" do
|
37
|
-
should wildcard_match([:a_symbol])
|
38
|
-
end
|
39
|
-
|
40
|
-
it "returns true if any items in the given Enumerable do not equal-match corresponding items in this Enumerable" do
|
41
|
-
should_not wildcard_match([:another_symbol])
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
if RUBY_VERSION =~ /^1.8/
|
46
|
-
context 'when the Enumerable is a String' do
|
47
|
-
subject { 'foo' }
|
48
|
-
|
49
|
-
it "returns true if the String is exactly equal to the given String" do
|
50
|
-
should wildcard_match('foo')
|
51
|
-
end
|
52
|
-
|
53
|
-
it "returns false if the string is not exactly equal to the given String" do
|
54
|
-
should_not wildcard_match('bar')
|
55
|
-
end
|
56
|
-
|
57
|
-
context 'whose #== method has been proxied' do
|
58
|
-
before do
|
59
|
-
@r1 = 'x'
|
60
|
-
@r2 = 'y'
|
61
|
-
mock.proxy(@r1) == @r1
|
62
|
-
mock.proxy(@r1) == @r2
|
63
|
-
end
|
64
|
-
|
65
|
-
it "doesn't blow up with a recursive loop error" do
|
66
|
-
@r1 == @r1
|
67
|
-
@r1 == @r2
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
context 'when not given an Enumerable' do
|
74
|
-
subject { klass.new({:foo => 'bar'}) }
|
75
|
-
|
76
|
-
it "returns false" do
|
77
|
-
should_not wildcard_match(:something_else)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
@@ -1,55 +0,0 @@
|
|
1
|
-
require File.expand_path('../../../spec_helper', __FILE__)
|
2
|
-
|
3
|
-
describe Hash do
|
4
|
-
include WildcardMatcherMatchers
|
5
|
-
|
6
|
-
describe '#wildcard_match?' do
|
7
|
-
context 'when this Hash has keys that respond to #wildcard_match?' do
|
8
|
-
subject { {is_a(Symbol) => 'x'} }
|
9
|
-
|
10
|
-
it "returns true if all keys in the given Hash wildcard-match the corresponding keys in this Hash" do
|
11
|
-
should wildcard_match({:foo => 'x'})
|
12
|
-
end
|
13
|
-
|
14
|
-
it "returns true if any keys in the given Hash do not wildcard-match the corresponding keys in this Hash" do
|
15
|
-
should_not wildcard_match({'foo' => 'x'})
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
context 'when this Hash has values that respond to #wildcard_match?' do
|
20
|
-
subject { {'x' => is_a(Symbol)} }
|
21
|
-
|
22
|
-
it "returns true if all values in the given Hash wildcard-match the corresponding values in this Hash" do
|
23
|
-
should wildcard_match({'x' => :foo})
|
24
|
-
end
|
25
|
-
|
26
|
-
it "returns false if any values in the given Hash do not wildcard-match the corresponding values in this Hash" do
|
27
|
-
should_not wildcard_match({'x' => 'foo'})
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
context 'when this Hash does not have keys or values that respond to #wildcard_match?' do
|
32
|
-
subject { {:x => :y} }
|
33
|
-
|
34
|
-
it "returns true if all pairs in the given Hash wildcard-match the corresponding values in this Hash" do
|
35
|
-
should wildcard_match({:x => :y})
|
36
|
-
end
|
37
|
-
|
38
|
-
it "returns false if any keys do not equal-match corresponding items in the subject" do
|
39
|
-
should_not wildcard_match({:z => :y})
|
40
|
-
end
|
41
|
-
|
42
|
-
it "returns false if any values do not equal-match corresponding items in the subject" do
|
43
|
-
should_not wildcard_match({:x => :z})
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
context 'when not given a Hash' do
|
48
|
-
subject { {:foo => 'bar'} }
|
49
|
-
|
50
|
-
it "returns false" do
|
51
|
-
should_not wildcard_match(:something_else)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|