rr 1.1.1 → 1.1.2.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Appraisals +46 -0
- data/CHANGES.md +21 -1
- data/Gemfile +19 -0
- data/README.md +91 -106
- data/Rakefile +55 -0
- data/gemfiles/ruby_18_rspec_1.gemfile +14 -0
- data/gemfiles/ruby_18_rspec_1.gemfile.lock +38 -0
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile +18 -0
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile.lock +64 -0
- data/gemfiles/ruby_19_rspec_2.gemfile +14 -0
- data/gemfiles/ruby_19_rspec_2.gemfile.lock +49 -0
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile +15 -0
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile.lock +123 -0
- data/gemfiles/ruby_19_rspec_2_rails_4.gemfile +15 -0
- data/gemfiles/ruby_19_rspec_2_rails_4.gemfile.lock +119 -0
- data/lib/rr/adapters.rb +4 -14
- data/lib/rr/integrations.rb +13 -12
- data/lib/rr/integrations/decorator.rb +4 -1
- data/lib/rr/integrations/rspec_2.rb +6 -1
- data/lib/rr/integrations/test_unit_1.rb +2 -2
- data/lib/rr/integrations/test_unit_2.rb +3 -1
- data/lib/rr/version.rb +1 -2
- data/lib/rr/without_autohook.rb +1 -1
- data/rr.gemspec +6 -2
- data/spec/custom_formatter_for_rspec.rb +18 -0
- data/spec/custom_formatter_for_rspec_2.rb +40 -0
- data/spec/defines_spec_suite_tasks.rb +45 -0
- data/spec/fixtures/rubygems_patch_for_187.rb +598 -0
- data/spec/global_helper.rb +33 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_suite_configuration.rb +132 -0
- data/spec/spec_suite_runner.rb +47 -0
- data/spec/suites.yml +24 -0
- data/spec/suites/rspec_1/helper.rb +24 -0
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +93 -0
- data/spec/suites/rspec_1/integration/test_unit_1_spec.rb +102 -0
- data/spec/suites/rspec_1/integration/test_unit_2_spec.rb +109 -0
- data/spec/suites/rspec_1/spec_helper.rb +3 -0
- data/spec/suites/rspec_1_rails_2/integration/astc_rails_2_spec.rb +141 -0
- data/spec/suites/rspec_1_rails_2/integration/rspec_1_rails_2_spec.rb +132 -0
- data/spec/suites/rspec_1_rails_2/integration/test_unit_1_rails_2_spec.rb +141 -0
- data/spec/suites/rspec_1_rails_2/integration/test_unit_2_rails_2_spec.rb +148 -0
- data/spec/suites/rspec_1_rails_2/spec_helper.rb +3 -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/helper.rb +28 -0
- data/spec/suites/rspec_2/integration/minitest_4_spec.rb +109 -0
- data/spec/suites/rspec_2/integration/minitest_spec.rb +109 -0
- data/spec/suites/rspec_2/integration/rspec_2_spec.rb +133 -0
- data/spec/suites/rspec_2/integration/test_unit_200_spec.rb +102 -0
- data/spec/suites/rspec_2/integration/test_unit_2_spec.rb +109 -0
- data/spec/suites/rspec_2/spec_helper.rb +3 -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/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/integrations/rspec/invocation_matcher_spec.rb +297 -0
- data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +85 -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/rspec_2_rails_3/integration/astc_rails_3_spec.rb +141 -0
- data/spec/suites/rspec_2_rails_3/integration/minitest_4_rails_3_spec.rb +148 -0
- data/spec/suites/rspec_2_rails_3/integration/rspec_2_rails_3_spec.rb +172 -0
- data/spec/suites/rspec_2_rails_3/integration/test_unit_200_rails_3_spec.rb +141 -0
- data/spec/suites/rspec_2_rails_3/integration/test_unit_2_rails_3_spec.rb +148 -0
- data/spec/suites/rspec_2_rails_3/spec_helper.rb +3 -0
- data/spec/suites/rspec_2_rails_4/integration/astc_rails_4_spec.rb +142 -0
- data/spec/suites/rspec_2_rails_4/integration/minitest_4_rails_4_spec.rb +149 -0
- data/spec/suites/rspec_2_rails_4/integration/rspec_2_rails_4_spec.rb +173 -0
- data/spec/suites/rspec_2_rails_4/integration/test_unit_200_rails_4_spec.rb +142 -0
- data/spec/suites/rspec_2_rails_4/integration/test_unit_2_rails_4_spec.rb +149 -0
- data/spec/suites/rspec_2_rails_4/spec_helper.rb +3 -0
- data/spec/support/adapter.rb +22 -0
- data/spec/support/adapter_tests/base.rb +45 -0
- data/spec/support/adapter_tests/minitest.rb +7 -0
- data/spec/support/adapter_tests/rspec.rb +66 -0
- data/spec/support/adapter_tests/test_unit.rb +47 -0
- data/spec/support/command_runner.rb +105 -0
- data/spec/support/generator.rb +56 -0
- data/spec/support/integration_tests/base.rb +64 -0
- data/spec/support/integration_tests/rails.rb +60 -0
- data/spec/support/integration_tests/rails_minitest.rb +13 -0
- data/spec/support/integration_tests/rails_rspec.rb +13 -0
- data/spec/support/integration_tests/rails_test_unit.rb +13 -0
- data/spec/support/integration_tests/rails_test_unit_like.rb +13 -0
- data/spec/support/integration_tests/ruby.rb +7 -0
- data/spec/support/integration_tests/ruby_minitest.rb +13 -0
- data/spec/support/integration_tests/ruby_rspec.rb +13 -0
- data/spec/support/integration_tests/ruby_test_unit.rb +13 -0
- data/spec/support/matchers/be_a_subset_of_matcher.rb +24 -0
- data/spec/support/project/cucumber.rb +50 -0
- data/spec/support/project/generator.rb +352 -0
- data/spec/support/project/minitest.rb +39 -0
- data/spec/support/project/rails.rb +199 -0
- data/spec/support/project/rails_minitest.rb +17 -0
- data/spec/support/project/rails_rspec.rb +50 -0
- data/spec/support/project/rails_test_unit.rb +17 -0
- data/spec/support/project/rails_test_unit_like.rb +17 -0
- data/spec/support/project/rspec.rb +69 -0
- data/spec/support/project/ruby.rb +34 -0
- data/spec/support/project/ruby_minitest.rb +11 -0
- data/spec/support/project/ruby_rspec.rb +29 -0
- data/spec/support/project/ruby_test_unit.rb +11 -0
- data/spec/support/project/ruby_test_unit_like.rb +21 -0
- data/spec/support/project/test_unit.rb +29 -0
- data/spec/support/project/test_unit_like.rb +7 -0
- data/spec/support/project/tests_runner.rb +22 -0
- data/spec/support/test.sqlite3 +0 -0
- data/spec/support/test_case/generator.rb +53 -0
- data/spec/support/test_case/minitest.rb +13 -0
- data/spec/support/test_case/rspec.rb +19 -0
- data/spec/support/test_case/test_unit.rb +21 -0
- data/spec/support/test_file/generator.rb +120 -0
- data/spec/support/test_file/minitest.rb +19 -0
- data/spec/support/test_file/rails_minitest.rb +7 -0
- data/spec/support/test_file/rails_rspec.rb +12 -0
- data/spec/support/test_file/rails_test_unit.rb +25 -0
- data/spec/support/test_file/rspec.rb +33 -0
- data/spec/support/test_file/test_unit.rb +36 -0
- data/spec/support/test_helper/generator.rb +27 -0
- data/spec/support/test_helper/minitest.rb +7 -0
- data/spec/support/test_helper/rails.rb +31 -0
- data/spec/support/test_helper/rails_minitest.rb +7 -0
- data/spec/support/test_helper/rails_rspec.rb +25 -0
- data/spec/support/test_helper/rails_test_unit.rb +23 -0
- data/spec/support/test_helper/rspec.rb +7 -0
- data/spec/support/test_helper/ruby.rb +31 -0
- data/spec/support/test_helper/test_unit.rb +7 -0
- metadata +172 -6
- data/VERSION +0 -1
@@ -0,0 +1,48 @@
|
|
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
|
+
|
8
|
+
before do
|
9
|
+
@expectation = AnyArgumentExpectation.new
|
10
|
+
end
|
11
|
+
|
12
|
+
describe "#expected_arguments" do
|
13
|
+
it "returns an empty array" do
|
14
|
+
expect(expectation.expected_arguments).to eq []
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe "==" do
|
19
|
+
it "returns true when comparing with another AnyArgumentExpectation" do
|
20
|
+
expect(expectation).to eq AnyArgumentExpectation.new
|
21
|
+
end
|
22
|
+
|
23
|
+
it "returns false when comparing with ArgumentEqualityExpectation" do
|
24
|
+
expect(expectation).to_not eq ArgumentEqualityExpectation.new(1)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe "#exact_match?" do
|
29
|
+
it "returns false" do
|
30
|
+
expectation.should_not be_exact_match(1, 2, 3)
|
31
|
+
expectation.should_not be_exact_match(1, 2)
|
32
|
+
expectation.should_not be_exact_match(1)
|
33
|
+
expectation.should_not be_exact_match()
|
34
|
+
expectation.should_not be_exact_match("does not match")
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "#wildcard_match?" do
|
39
|
+
it "returns true" do
|
40
|
+
expectation = AnyArgumentExpectation.new
|
41
|
+
expect(expectation).to be_wildcard_match(1, 2, 3)
|
42
|
+
expect(expectation).to be_wildcard_match("whatever")
|
43
|
+
expect(expectation).to be_wildcard_match("whatever", "else")
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,14 @@
|
|
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
|
@@ -0,0 +1,135 @@
|
|
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
|
+
expect(expectation.expected_arguments).to eq [1, 2, 3]
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
describe "==" do
|
18
|
+
it "returns true when passed in expected_arguments are equal" do
|
19
|
+
expect(expectation).to eq ArgumentEqualityExpectation.new(1, 2, 3)
|
20
|
+
end
|
21
|
+
|
22
|
+
it "returns false when passed in expected_arguments are not equal" do
|
23
|
+
expect(expectation).to_not eq ArgumentEqualityExpectation.new(1, 2)
|
24
|
+
expect(expectation).to_not eq ArgumentEqualityExpectation.new(1)
|
25
|
+
expect(expectation).to_not eq ArgumentEqualityExpectation.new(:something)
|
26
|
+
expect(expectation).to_not eq 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
|
+
expect(expectation).to 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
|
+
expect(expectation).to 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
|
+
expect(ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2)).to eq ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2)
|
103
|
+
|
104
|
+
mock.proxy(@predicate1) == @predicate1
|
105
|
+
mock.proxy(@predicate2) == @predicate3
|
106
|
+
expect(ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2)).to_not eq 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
|
+
expect(ArgumentEqualityFunctionalFixture.new(@predicate1, @predicate2)).to 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
|
@@ -0,0 +1,30 @@
|
|
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
|
+
context "when passed a Boolean" do
|
15
|
+
it "returns true" do
|
16
|
+
expect(expectation).to be_wildcard_match(true)
|
17
|
+
expect(expectation).to be_wildcard_match(false)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
context "when not passed a Boolean" do
|
22
|
+
it "returns false" do
|
23
|
+
expectation.should_not be_wildcard_match(:not_a_boolean)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb
ADDED
@@ -0,0 +1,82 @@
|
|
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
|
+
expect(expectation).to 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
|
+
expect(expectation).to be_wildcard_match(expected_hash)
|
42
|
+
end
|
43
|
+
|
44
|
+
it "returns true when hash contains at least expectation's key/values" do
|
45
|
+
expect(expectation).to 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
|
+
expect(expectation).to 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
|
+
expect(expectation).to 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
|
+
expect(expectation).to 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
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
|
2
|
+
|
3
|
+
=begin
|
4
|
+
module RR
|
5
|
+
module Expectations
|
6
|
+
describe ArgumentEqualityExpectation, "with Satisfy argument" do
|
7
|
+
attr_reader :expectation, :expectation_proc, :expected_value, :satisfy_matcher
|
8
|
+
|
9
|
+
before do
|
10
|
+
@expected_value = :foo
|
11
|
+
@expectation_proc = lambda {|argument| puts 'called'; argument == expected_value}
|
12
|
+
@satisfy_matcher = satisfy(&expectation_proc)
|
13
|
+
@expectation = ArgumentEqualityExpectation.new(satisfy_matcher)
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "#exact_match?" do
|
17
|
+
before do
|
18
|
+
end
|
19
|
+
|
20
|
+
it "returns true when passed a Satisfy matcher with the same proc" do
|
21
|
+
expect(expectation).to be_exact_match(RR::WildcardMatchers::Satisfy.new(expectation_proc))
|
22
|
+
end
|
23
|
+
|
24
|
+
it "returns false when passed a Satisfy matcher with another proc" do
|
25
|
+
expectation.should_not be_exact_match(RR::WildcardMatchers::Satisfy.new(lambda {}))
|
26
|
+
end
|
27
|
+
|
28
|
+
it "returns false otherwise" do
|
29
|
+
expectation.should_not be_exact_match("hello")
|
30
|
+
expectation.should_not be_exact_match(:hello)
|
31
|
+
expectation.should_not be_exact_match(1)
|
32
|
+
expectation.should_not be_exact_match(nil)
|
33
|
+
expectation.should_not be_exact_match(true)
|
34
|
+
expectation.should_not be_exact_match()
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "#wildcard_match?" do
|
39
|
+
it "returns true when the proc returns a truthy value" do
|
40
|
+
expect((!!expectation_proc.call(expected_value))).to be_true
|
41
|
+
expect(expectation).to be_wildcard_match(expected_value)
|
42
|
+
end
|
43
|
+
|
44
|
+
it "returns false when the proc returns a falsey value" do
|
45
|
+
expect((!!expectation_proc.call(:bar))).to be_false
|
46
|
+
expectation.should_not be_wildcard_match(:bar)
|
47
|
+
end
|
48
|
+
|
49
|
+
it "returns true when an exact match" do
|
50
|
+
expect(expectation).to be_wildcard_match(satisfy_matcher)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "returns false when not passed correct number of arguments" do
|
54
|
+
expectation.should_not be_wildcard_match()
|
55
|
+
expectation.should_not be_wildcard_match(:a, :b)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
=end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper")
|
2
|
+
|
3
|
+
module RR
|
4
|
+
module Expectations
|
5
|
+
describe TimesCalledExpectation do
|
6
|
+
context "when using an AnyTimesMatcher" do
|
7
|
+
include_examples "RR::Expectations::TimesCalledExpectation"
|
8
|
+
|
9
|
+
describe "#verify!" do
|
10
|
+
it "always passes" do
|
11
|
+
stub(subject).foobar.any_number_of_times
|
12
|
+
RR.verify
|
13
|
+
|
14
|
+
stub(subject).foobar.any_number_of_times
|
15
|
+
10.times {subject.foobar}
|
16
|
+
RR.verify
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper")
|
2
|
+
|
3
|
+
module RR
|
4
|
+
module Expectations
|
5
|
+
describe TimesCalledExpectation do
|
6
|
+
context "when using an AtLeastMatcher" do
|
7
|
+
include_examples "RR::Expectations::TimesCalledExpectation"
|
8
|
+
|
9
|
+
before do
|
10
|
+
mock(subject).foobar.at_least(3)
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "#verify!" do
|
14
|
+
it "passes when times called > times" do
|
15
|
+
4.times {subject.foobar}
|
16
|
+
RR.verify
|
17
|
+
end
|
18
|
+
|
19
|
+
it "passes when times called == times" do
|
20
|
+
3.times {subject.foobar}
|
21
|
+
RR.verify
|
22
|
+
end
|
23
|
+
|
24
|
+
it "raises error when times called < times" do
|
25
|
+
subject.foobar
|
26
|
+
expect {
|
27
|
+
RR.verify
|
28
|
+
}.to raise_error(
|
29
|
+
RR::Errors::TimesCalledError,
|
30
|
+
"foobar()\nCalled 1 time.\nExpected at least 3 times."
|
31
|
+
)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../../spec_helper")
|
2
|
+
|
3
|
+
module RR
|
4
|
+
module Expectations
|
5
|
+
describe TimesCalledExpectation do
|
6
|
+
context "when using an AtMostMatcher" do
|
7
|
+
include_examples "RR::Expectations::TimesCalledExpectation"
|
8
|
+
|
9
|
+
before do
|
10
|
+
stub(subject).foobar.at_most(3)
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "#verify!" do
|
14
|
+
it "passes when times called == times" do
|
15
|
+
3.times {subject.foobar}
|
16
|
+
RR.verify
|
17
|
+
end
|
18
|
+
|
19
|
+
it "passes when times called < times" do
|
20
|
+
2.times {subject.foobar}
|
21
|
+
RR.verify
|
22
|
+
end
|
23
|
+
|
24
|
+
it "raises error when times called > times" do
|
25
|
+
expect {
|
26
|
+
4.times {subject.foobar}
|
27
|
+
}.to raise_error(
|
28
|
+
RR::Errors::TimesCalledError,
|
29
|
+
"foobar()\nCalled 4 times.\nExpected at most 3 times."
|
30
|
+
)
|
31
|
+
|
32
|
+
expect {
|
33
|
+
RR.verify
|
34
|
+
}.to raise_error(
|
35
|
+
RR::Errors::TimesCalledError,
|
36
|
+
"foobar()\nCalled 4 times.\nExpected at most 3 times."
|
37
|
+
)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|