rr 1.1.2 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Appraisals +3 -43
- data/CHANGES.md +46 -0
- data/CREDITS.md +5 -0
- data/Gemfile +3 -12
- data/README.md +25 -24
- data/Rakefile +16 -38
- data/doc/02_syntax_comparison.md +1 -0
- data/lib/rr/core_ext/array.rb +2 -0
- data/lib/rr/core_ext/hash.rb +2 -0
- data/lib/rr/deprecations.rb +97 -0
- data/lib/rr/double_definitions/double_injections/any_instance_of.rb +1 -1
- data/lib/rr/double_definitions/double_injections/instance.rb +2 -2
- data/lib/rr/dsl.rb +152 -0
- data/lib/rr/injections/method_missing_injection.rb +6 -2
- data/lib/rr/integrations/minitest_4.rb +1 -1
- data/lib/rr/integrations/minitest_4_active_support.rb +1 -1
- data/lib/rr/integrations/rspec/invocation_matcher.rb +0 -8
- data/lib/rr/integrations/rspec_2.rb +20 -2
- data/lib/rr/recorded_call.rb +29 -0
- data/lib/rr/recorded_calls.rb +8 -4
- data/lib/rr/space.rb +1 -1
- data/lib/rr/spy_verification.rb +13 -5
- data/lib/rr/version.rb +1 -1
- data/lib/rr/wildcard_matchers.rb +10 -10
- data/lib/rr/without_autohook.rb +5 -13
- data/rr.gemspec +3 -3
- data/spec/defines_spec_suite_tasks.rb +12 -0
- data/spec/global_helper.rb +5 -0
- data/spec/spec_suite_configuration.rb +1 -7
- data/spec/suites.yml +1 -1
- data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +133 -33
- data/spec/suites/rspec_2/functional/dont_allow_spec.rb +13 -8
- data/spec/suites/rspec_2/functional/mock_bang_spec.rb +20 -0
- data/spec/suites/rspec_2/functional/mock_instance_of_spec.rb +14 -0
- data/spec/suites/rspec_2/functional/mock_instance_of_strong_spec.rb +15 -0
- data/spec/suites/rspec_2/functional/mock_proxy_instance_of_spec.rb +15 -0
- data/spec/suites/rspec_2/functional/mock_proxy_spec.rb +14 -0
- data/spec/suites/rspec_2/functional/mock_spec.rb +8 -232
- data/spec/suites/rspec_2/functional/mock_strong_spec.rb +14 -0
- data/spec/suites/rspec_2/functional/received_spec.rb +16 -0
- data/spec/suites/rspec_2/functional/spy_spec.rb +89 -28
- data/spec/suites/rspec_2/functional/stub_bang_spec.rb +20 -0
- data/spec/suites/rspec_2/functional/stub_instance_of_spec.rb +15 -0
- data/spec/suites/rspec_2/functional/stub_instance_of_strong_spec.rb +15 -0
- data/spec/suites/rspec_2/functional/stub_proxy_instance_of_spec.rb +16 -0
- data/spec/suites/rspec_2/functional/stub_proxy_spec.rb +45 -0
- data/spec/suites/rspec_2/functional/stub_spec.rb +42 -161
- data/spec/suites/rspec_2/functional/stub_strong_spec.rb +15 -0
- data/spec/suites/rspec_2/helper.rb +2 -2
- data/spec/suites/rspec_2/support/mixins/double_definition_creator_helpers.rb +173 -0
- data/spec/suites/rspec_2/support/mixins/mock_definition_creator_helpers.rb +45 -0
- data/spec/suites/rspec_2/support/mixins/proxy_definition_creator_helpers.rb +33 -0
- data/spec/suites/rspec_2/support/mixins/stub_creator_helpers.rb +43 -0
- data/spec/suites/rspec_2/support/mixins/stub_definition_creator_helpers.rb +45 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_with_never_called_qualifier.rb +39 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_with_times_called_qualifier.rb +50 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_without_qualifiers.rb +131 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/dont_allow.rb +148 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_instance_of.rb +26 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_instance_of_strong.rb +28 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_proxy.rb +11 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_strong.rb +37 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mocking.rb +107 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_instance_of.rb +32 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_instance_of_strong.rb +39 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_proxy.rb +11 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_strong.rb +37 -0
- data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stubbing.rb +57 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/array_flatten_bug.rb +35 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/block_form.rb +31 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/comparing_arity.rb +63 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/object_is_proxy.rb +43 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/sequential_invocations.rb +26 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/setting_implementation.rb +51 -0
- data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/yields.rb +81 -0
- data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +0 -28
- data/spec/suites/rspec_2/unit/deprecations_spec.rb +27 -0
- data/spec/suites/rspec_2/unit/dsl/double_creators_spec.rb +133 -0
- data/spec/suites/rspec_2/unit/dsl/space_spec.rb +99 -0
- data/spec/suites/rspec_2/unit/dsl/wildcard_matchers_spec.rb +67 -0
- data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +4 -19
- data/spec/suites/rspec_2/unit/space_spec.rb +5 -3
- data/spec/suites/rspec_2/unit/spy_verification_spec.rb +1 -1
- data/spec/support/adapter.rb +1 -1
- data/spec/support/adapter_tests/rspec.rb +19 -15
- data/spec/support/project/generator.rb +0 -4
- metadata +55 -48
- data/gemfiles/ruby_18_rspec_1.gemfile +0 -14
- data/gemfiles/ruby_18_rspec_1.gemfile.lock +0 -38
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile +0 -18
- data/gemfiles/ruby_18_rspec_1_rails_2.gemfile.lock +0 -64
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile +0 -15
- data/gemfiles/ruby_19_rspec_2_rails_3.gemfile.lock +0 -123
- data/lib/rr/adapters.rb +0 -34
- data/lib/rr/adapters/rr_methods.rb +0 -142
- data/lib/rr/integrations/rspec_1.rb +0 -46
- data/lib/rr/integrations/test_unit_1.rb +0 -63
- data/lib/rr/integrations/test_unit_2.rb +0 -17
- data/lib/rr/integrations/test_unit_200.rb +0 -27
- data/lib/rr/integrations/test_unit_200_active_support.rb +0 -25
- data/lib/rr/integrations/test_unit_2_active_support.rb +0 -38
- data/spec/suites/rspec_1/helper.rb +0 -24
- data/spec/suites/rspec_1/integration/rspec_1_spec.rb +0 -93
- data/spec/suites/rspec_1/integration/test_unit_1_spec.rb +0 -102
- data/spec/suites/rspec_1/integration/test_unit_2_spec.rb +0 -109
- data/spec/suites/rspec_1/spec_helper.rb +0 -3
- data/spec/suites/rspec_1_rails_2/integration/astc_rails_2_spec.rb +0 -141
- data/spec/suites/rspec_1_rails_2/integration/rspec_1_rails_2_spec.rb +0 -132
- data/spec/suites/rspec_1_rails_2/integration/test_unit_1_rails_2_spec.rb +0 -141
- data/spec/suites/rspec_1_rails_2/integration/test_unit_2_rails_2_spec.rb +0 -148
- data/spec/suites/rspec_1_rails_2/spec_helper.rb +0 -3
- 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/proxy_spec.rb +0 -136
- data/spec/suites/rspec_2/functional/strong_spec.rb +0 -79
- data/spec/suites/rspec_2/integration/test_unit_200_spec.rb +0 -102
- data/spec/suites/rspec_2/integration/test_unit_2_spec.rb +0 -109
- 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_rails_3/integration/astc_rails_3_spec.rb +0 -141
- data/spec/suites/rspec_2_rails_3/integration/minitest_4_rails_3_spec.rb +0 -148
- data/spec/suites/rspec_2_rails_3/integration/rspec_2_rails_3_spec.rb +0 -172
- data/spec/suites/rspec_2_rails_3/integration/test_unit_200_rails_3_spec.rb +0 -141
- data/spec/suites/rspec_2_rails_3/integration/test_unit_2_rails_3_spec.rb +0 -148
- data/spec/suites/rspec_2_rails_3/spec_helper.rb +0 -3
- data/spec/suites/rspec_2_rails_4/integration/test_unit_200_rails_4_spec.rb +0 -142
- data/spec/suites/rspec_2_rails_4/integration/test_unit_2_rails_4_spec.rb +0 -149
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
|
2
|
-
|
|
3
|
-
describe 'Integration with Test::Unit 1 and Rails 2' do
|
|
4
|
-
include IntegrationTests::RailsTestUnit
|
|
5
|
-
|
|
6
|
-
def configure_rails_project_generator(project_generator)
|
|
7
|
-
super
|
|
8
|
-
project_generator.configure do |project|
|
|
9
|
-
project.rails_version = 2
|
|
10
|
-
end
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
def self.including_the_adapter_manually_works
|
|
14
|
-
specify "including the adapter manually works" do
|
|
15
|
-
project = generate_project do |project|
|
|
16
|
-
project.add_to_prelude <<-EOT
|
|
17
|
-
class ActiveSupport::TestCase
|
|
18
|
-
include RR::Adapters::TestUnit
|
|
19
|
-
end
|
|
20
|
-
EOT
|
|
21
|
-
end
|
|
22
|
-
project.add_test_file do |file|
|
|
23
|
-
file.add_working_test_case_with_adapter_tests do |test_case|
|
|
24
|
-
test_case.add_to_body <<-EOT
|
|
25
|
-
def test_the_correct_adapters_are_loaded
|
|
26
|
-
assert_adapters_loaded #{adapters_that_should_be_loaded.inspect}
|
|
27
|
-
end
|
|
28
|
-
EOT
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
result = project.run_tests
|
|
32
|
-
result.should be_success
|
|
33
|
-
result.should_not have_errors_or_failures
|
|
34
|
-
end
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
def self.rr_hooks_into_the_test_framework_automatically
|
|
38
|
-
specify "RR hooks into the test framework automatically" do
|
|
39
|
-
project = generate_project
|
|
40
|
-
project.add_test_file do |file|
|
|
41
|
-
file.add_working_test_case
|
|
42
|
-
end
|
|
43
|
-
result = project.run_tests
|
|
44
|
-
result.should be_success
|
|
45
|
-
result.should_not have_errors_or_failures
|
|
46
|
-
end
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
def self.using_rr_with_cucumber_works
|
|
50
|
-
specify "using RR with Cucumber works" do
|
|
51
|
-
project_generator = build_rails_project_generator do |project_generator|
|
|
52
|
-
project_generator.mixin Project::Cucumber
|
|
53
|
-
end
|
|
54
|
-
project = project_generator.call
|
|
55
|
-
result = project.run_command_within("cucumber")
|
|
56
|
-
result.should be_success
|
|
57
|
-
end
|
|
58
|
-
end
|
|
59
|
-
|
|
60
|
-
context 'when RR is listed in config/environment.rb' do
|
|
61
|
-
def configure_project_generator(project_generator)
|
|
62
|
-
super
|
|
63
|
-
project_generator.configure do |project|
|
|
64
|
-
project.autorequire_gems = true
|
|
65
|
-
end
|
|
66
|
-
end
|
|
67
|
-
|
|
68
|
-
def adapters_that_should_be_loaded
|
|
69
|
-
[:TestUnit1]
|
|
70
|
-
end
|
|
71
|
-
|
|
72
|
-
including_the_adapter_manually_works
|
|
73
|
-
using_rr_with_cucumber_works
|
|
74
|
-
end
|
|
75
|
-
|
|
76
|
-
context 'when RR is being required manually' do
|
|
77
|
-
def configure_project_generator(project_generator)
|
|
78
|
-
super
|
|
79
|
-
project_generator.configure do |project|
|
|
80
|
-
project.autorequire_gems = false
|
|
81
|
-
end
|
|
82
|
-
end
|
|
83
|
-
|
|
84
|
-
def adapters_that_should_be_loaded
|
|
85
|
-
[:TestUnit1]
|
|
86
|
-
end
|
|
87
|
-
|
|
88
|
-
rr_hooks_into_the_test_framework_automatically
|
|
89
|
-
including_the_adapter_manually_works
|
|
90
|
-
using_rr_with_cucumber_works
|
|
91
|
-
|
|
92
|
-
specify "when RR raises an error it raises a failure not an exception" do
|
|
93
|
-
project = generate_project
|
|
94
|
-
project.add_test_file do |file|
|
|
95
|
-
file.add_test_case do |test_case|
|
|
96
|
-
test_case.add_test <<-EOT
|
|
97
|
-
object = Object.new
|
|
98
|
-
mock(object).foo
|
|
99
|
-
EOT
|
|
100
|
-
end
|
|
101
|
-
end
|
|
102
|
-
result = project.run_tests
|
|
103
|
-
result.should fail_with_output(/1 failure/)
|
|
104
|
-
end
|
|
105
|
-
|
|
106
|
-
specify "the database is properly rolled back after an RR error" do
|
|
107
|
-
project = generate_project do |project|
|
|
108
|
-
project.add_model_and_migration(:person, :people, :name => :string)
|
|
109
|
-
end
|
|
110
|
-
project.add_test_file do |file|
|
|
111
|
-
file.add_test_case do |test_case|
|
|
112
|
-
test_case.add_test <<-EOT
|
|
113
|
-
Person.create!(:name => 'Joe Blow')
|
|
114
|
-
object = Object.new
|
|
115
|
-
mock(object).foo
|
|
116
|
-
EOT
|
|
117
|
-
end
|
|
118
|
-
end
|
|
119
|
-
expect {
|
|
120
|
-
result = project.run_tests
|
|
121
|
-
result.should have_errors_or_failures
|
|
122
|
-
}.to leave_database_table_clear(project, :people)
|
|
123
|
-
end
|
|
124
|
-
|
|
125
|
-
specify "throwing an error in teardown doesn't mess things up" do
|
|
126
|
-
project = generate_project
|
|
127
|
-
project.add_test_file do |file|
|
|
128
|
-
file.add_test_case do |test_case|
|
|
129
|
-
test_case.add_to_body <<-EOT
|
|
130
|
-
def teardown
|
|
131
|
-
raise 'hell'
|
|
132
|
-
end
|
|
133
|
-
EOT
|
|
134
|
-
test_case.add_test("") # doesn't matter
|
|
135
|
-
end
|
|
136
|
-
end
|
|
137
|
-
result = project.run_tests
|
|
138
|
-
result.should fail_with_output(/1 error/)
|
|
139
|
-
end
|
|
140
|
-
end
|
|
141
|
-
end
|
|
@@ -1,148 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
|
2
|
-
|
|
3
|
-
describe 'Integration with Test::Unit ~> 2.4 and Rails 2' do
|
|
4
|
-
include IntegrationTests::RailsTestUnit
|
|
5
|
-
|
|
6
|
-
def configure_rails_project_generator(project_generator)
|
|
7
|
-
super
|
|
8
|
-
project_generator.configure do |project|
|
|
9
|
-
project.rails_version = 2
|
|
10
|
-
end
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
def configure_project_generator(project_generator)
|
|
14
|
-
super
|
|
15
|
-
project_generator.configure do |project|
|
|
16
|
-
project.test_unit_gem_version = '~> 2.4'
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
def self.including_the_adapter_manually_works
|
|
21
|
-
specify "including the adapter manually works" do
|
|
22
|
-
project = generate_project do |project|
|
|
23
|
-
project.add_to_prelude <<-EOT
|
|
24
|
-
class ActiveSupport::TestCase
|
|
25
|
-
include RR::Adapters::TestUnit
|
|
26
|
-
end
|
|
27
|
-
EOT
|
|
28
|
-
end
|
|
29
|
-
project.add_test_file do |file|
|
|
30
|
-
file.add_working_test_case_with_adapter_tests do |test_case|
|
|
31
|
-
test_case.add_to_body <<-EOT
|
|
32
|
-
def test_the_correct_adapters_are_loaded
|
|
33
|
-
assert_adapters_loaded #{adapters_that_should_be_loaded.inspect}
|
|
34
|
-
end
|
|
35
|
-
EOT
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
result = project.run_tests
|
|
39
|
-
result.should be_success
|
|
40
|
-
result.should_not have_errors_or_failures
|
|
41
|
-
end
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
def self.rr_hooks_into_the_test_framework_automatically
|
|
45
|
-
specify "RR hooks into the test framework automatically" do
|
|
46
|
-
project = generate_project
|
|
47
|
-
project.add_test_file do |file|
|
|
48
|
-
file.add_working_test_case
|
|
49
|
-
end
|
|
50
|
-
result = project.run_tests
|
|
51
|
-
result.should be_success
|
|
52
|
-
result.should_not have_errors_or_failures
|
|
53
|
-
end
|
|
54
|
-
end
|
|
55
|
-
|
|
56
|
-
def self.using_rr_with_cucumber_works
|
|
57
|
-
specify "using RR with Cucumber works" do
|
|
58
|
-
project_generator = build_rails_project_generator do |project_generator|
|
|
59
|
-
project_generator.mixin Project::Cucumber
|
|
60
|
-
end
|
|
61
|
-
project = project_generator.call
|
|
62
|
-
result = project.run_command_within("cucumber")
|
|
63
|
-
result.should be_success
|
|
64
|
-
end
|
|
65
|
-
end
|
|
66
|
-
|
|
67
|
-
context 'when RR is listed in config/environment.rb' do
|
|
68
|
-
def configure_project_generator(project_generator)
|
|
69
|
-
super
|
|
70
|
-
project_generator.configure do |project|
|
|
71
|
-
project.autorequire_gems = true
|
|
72
|
-
end
|
|
73
|
-
end
|
|
74
|
-
|
|
75
|
-
def adapters_that_should_be_loaded
|
|
76
|
-
[:TestUnit2]
|
|
77
|
-
end
|
|
78
|
-
|
|
79
|
-
including_the_adapter_manually_works
|
|
80
|
-
using_rr_with_cucumber_works
|
|
81
|
-
end
|
|
82
|
-
|
|
83
|
-
context 'when RR is being required manually' do
|
|
84
|
-
def configure_project_generator(project_generator)
|
|
85
|
-
super
|
|
86
|
-
project_generator.configure do |project|
|
|
87
|
-
project.autorequire_gems = false
|
|
88
|
-
end
|
|
89
|
-
end
|
|
90
|
-
|
|
91
|
-
def adapters_that_should_be_loaded
|
|
92
|
-
[:TestUnit2, :TestUnit2ActiveSupport]
|
|
93
|
-
end
|
|
94
|
-
|
|
95
|
-
rr_hooks_into_the_test_framework_automatically
|
|
96
|
-
including_the_adapter_manually_works
|
|
97
|
-
using_rr_with_cucumber_works
|
|
98
|
-
|
|
99
|
-
specify "when RR raises an error it raises a failure not an exception" do
|
|
100
|
-
project = generate_project
|
|
101
|
-
project.add_test_file do |file|
|
|
102
|
-
file.add_test_case do |test_case|
|
|
103
|
-
test_case.add_test <<-EOT
|
|
104
|
-
object = Object.new
|
|
105
|
-
mock(object).foo
|
|
106
|
-
EOT
|
|
107
|
-
end
|
|
108
|
-
end
|
|
109
|
-
result = project.run_tests
|
|
110
|
-
result.should fail_with_output(/1 failure/)
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
specify "the database is properly rolled back after an RR error" do
|
|
114
|
-
project = generate_project do |project|
|
|
115
|
-
project.add_model_and_migration(:person, :people, :name => :string)
|
|
116
|
-
end
|
|
117
|
-
project.add_test_file do |file|
|
|
118
|
-
file.add_test_case do |test_case|
|
|
119
|
-
test_case.add_test <<-EOT
|
|
120
|
-
Person.create!(:name => 'Joe Blow')
|
|
121
|
-
object = Object.new
|
|
122
|
-
mock(object).foo
|
|
123
|
-
EOT
|
|
124
|
-
end
|
|
125
|
-
end
|
|
126
|
-
expect {
|
|
127
|
-
result = project.run_tests
|
|
128
|
-
result.should have_errors_or_failures
|
|
129
|
-
}.to leave_database_table_clear(project, :people)
|
|
130
|
-
end
|
|
131
|
-
|
|
132
|
-
specify "throwing an error in teardown doesn't mess things up" do
|
|
133
|
-
project = generate_project
|
|
134
|
-
project.add_test_file do |file|
|
|
135
|
-
file.add_test_case do |test_case|
|
|
136
|
-
test_case.add_to_body <<-EOT
|
|
137
|
-
def teardown
|
|
138
|
-
raise 'hell'
|
|
139
|
-
end
|
|
140
|
-
EOT
|
|
141
|
-
test_case.add_test("") # doesn't matter
|
|
142
|
-
end
|
|
143
|
-
end
|
|
144
|
-
result = project.run_tests
|
|
145
|
-
result.should fail_with_output(/1 error/)
|
|
146
|
-
end
|
|
147
|
-
end
|
|
148
|
-
end
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
|
2
|
-
|
|
3
|
-
describe 'spies' do
|
|
4
|
-
it "validates that a Double was called after it was called" do
|
|
5
|
-
stub(subject).foobar
|
|
6
|
-
subject.foobar(1, 2)
|
|
7
|
-
|
|
8
|
-
expect(subject).to have_received.foobar(1, 2)
|
|
9
|
-
expect {
|
|
10
|
-
expect(subject).to have_received.foobar(1, 2, 3)
|
|
11
|
-
}.to raise_error(RSpec::Expectations::ExpectationNotMetError)
|
|
12
|
-
end
|
|
13
|
-
end
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
|
2
|
-
|
|
3
|
-
%w(instance_of all_instances_of).each do |method|
|
|
4
|
-
describe "##{method}" do
|
|
5
|
-
it "applies to instances instantiated before the Double expection was created" do
|
|
6
|
-
subject_class = Class.new
|
|
7
|
-
subject = subject_class.new
|
|
8
|
-
__send__(method, subject_class) do |o|
|
|
9
|
-
o.to_s {"Subject is stubbed"}
|
|
10
|
-
end
|
|
11
|
-
expect(subject.to_s).to eq "Subject is stubbed"
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
end
|
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../../spec_helper', __FILE__)
|
|
2
|
-
|
|
3
|
-
describe '#proxy' do
|
|
4
|
-
subject { Object.new }
|
|
5
|
-
|
|
6
|
-
it "proxies via inline call" do
|
|
7
|
-
expected_to_s_value = subject.to_s
|
|
8
|
-
mock.proxy(subject).to_s
|
|
9
|
-
expect(subject.to_s).to eq expected_to_s_value
|
|
10
|
-
expect { subject.to_s }.to raise_error
|
|
11
|
-
RR.reset
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
it "proxy allows ordering" do
|
|
15
|
-
def subject.to_s(arg)
|
|
16
|
-
"Original to_s with arg #{arg}"
|
|
17
|
-
end
|
|
18
|
-
mock.proxy(subject).to_s(:foo).ordered
|
|
19
|
-
mock.proxy(subject).to_s(:bar).twice.ordered
|
|
20
|
-
|
|
21
|
-
expect(subject.to_s(:foo)).to eq "Original to_s with arg foo"
|
|
22
|
-
expect(subject.to_s(:bar)).to eq "Original to_s with arg bar"
|
|
23
|
-
expect(subject.to_s(:bar)).to eq "Original to_s with arg bar"
|
|
24
|
-
expect { subject.to_s(:bar) }.to raise_error(RR::Errors::TimesCalledError)
|
|
25
|
-
|
|
26
|
-
RR.reset
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
it "proxy allows ordering" do
|
|
30
|
-
def subject.to_s(arg)
|
|
31
|
-
"Original to_s with arg #{arg}"
|
|
32
|
-
end
|
|
33
|
-
mock.proxy(subject).to_s(:foo).ordered
|
|
34
|
-
mock.proxy(subject).to_s(:bar).twice.ordered
|
|
35
|
-
|
|
36
|
-
expect(subject.to_s(:foo)).to eq "Original to_s with arg foo"
|
|
37
|
-
expect(subject.to_s(:bar)).to eq "Original to_s with arg bar"
|
|
38
|
-
expect(subject.to_s(:bar)).to eq "Original to_s with arg bar"
|
|
39
|
-
expect { subject.to_s(:bar) }.to raise_error(RR::Errors::TimesCalledError)
|
|
40
|
-
|
|
41
|
-
RR.reset
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
it "proxies via block with argument" do
|
|
45
|
-
def subject.foobar_1(*args)
|
|
46
|
-
:original_value_1
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
def subject.foobar_2
|
|
50
|
-
:original_value_2
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
mock.proxy subject do |c|
|
|
54
|
-
c.foobar_1(1)
|
|
55
|
-
c.foobar_2
|
|
56
|
-
end
|
|
57
|
-
expect(subject.foobar_1(1)).to eq :original_value_1
|
|
58
|
-
expect { subject.foobar_1(:blah) }.to raise_error
|
|
59
|
-
|
|
60
|
-
expect(subject.foobar_2).to eq :original_value_2
|
|
61
|
-
expect { subject.foobar_2(:blah) }.to raise_error
|
|
62
|
-
|
|
63
|
-
RR.reset
|
|
64
|
-
end
|
|
65
|
-
|
|
66
|
-
it "proxies via block without argument" do
|
|
67
|
-
def subject.foobar_1(*args)
|
|
68
|
-
:original_value_1
|
|
69
|
-
end
|
|
70
|
-
|
|
71
|
-
def subject.foobar_2
|
|
72
|
-
:original_value_2
|
|
73
|
-
end
|
|
74
|
-
|
|
75
|
-
mock.proxy subject do
|
|
76
|
-
foobar_1(1)
|
|
77
|
-
foobar_2
|
|
78
|
-
end
|
|
79
|
-
expect(subject.foobar_1(1)).to eq :original_value_1
|
|
80
|
-
expect { subject.foobar_1(:blah) }.to raise_error
|
|
81
|
-
|
|
82
|
-
expect(subject.foobar_2).to eq :original_value_2
|
|
83
|
-
expect { subject.foobar_2(:blah) }.to raise_error
|
|
84
|
-
|
|
85
|
-
RR.reset
|
|
86
|
-
end
|
|
87
|
-
|
|
88
|
-
# bug #44
|
|
89
|
-
describe 'when wrapped in an array that is then flattened' do
|
|
90
|
-
subject {
|
|
91
|
-
Object.new.tap do |o|
|
|
92
|
-
def o.foo; end
|
|
93
|
-
end
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
context 'when the method being mocked is not defined' do
|
|
97
|
-
it "does not raise an error" do
|
|
98
|
-
mock.proxy(subject).foo
|
|
99
|
-
subject.foo
|
|
100
|
-
expect([subject].flatten).to eq [subject]
|
|
101
|
-
end
|
|
102
|
-
|
|
103
|
-
it "honors a #to_ary that already exists" do
|
|
104
|
-
subject.instance_eval do
|
|
105
|
-
def to_ary; []; end
|
|
106
|
-
end
|
|
107
|
-
mock.proxy(subject).foo
|
|
108
|
-
subject.foo
|
|
109
|
-
expect([subject].flatten).to eq []
|
|
110
|
-
end
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
context 'when the method being mocked is defined' do
|
|
114
|
-
before do
|
|
115
|
-
subject.instance_eval do
|
|
116
|
-
def foo; end
|
|
117
|
-
end
|
|
118
|
-
end
|
|
119
|
-
|
|
120
|
-
it "does not raise an error" do
|
|
121
|
-
mock.proxy(subject).foo
|
|
122
|
-
subject.foo
|
|
123
|
-
expect([subject].flatten).to eq [subject]
|
|
124
|
-
end
|
|
125
|
-
|
|
126
|
-
it "honors a #to_ary that already exists" do
|
|
127
|
-
eigen(subject).class_eval do
|
|
128
|
-
def to_ary; []; end
|
|
129
|
-
end
|
|
130
|
-
mock.proxy(subject).foo
|
|
131
|
-
subject.foo
|
|
132
|
-
expect([subject].flatten).to eq []
|
|
133
|
-
end
|
|
134
|
-
end
|
|
135
|
-
end
|
|
136
|
-
end
|