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,109 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe 'Integration with Test::Unit >= 2.5' do
|
4
|
+
include IntegrationTests::RubyTestUnit
|
5
|
+
|
6
|
+
def configure_project_generator(project_generator)
|
7
|
+
super
|
8
|
+
project_generator.configure do |project|
|
9
|
+
project.test_unit_gem_version = '>= 2.5'
|
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 Test::Unit::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
|
+
context 'when Bundler is autorequiring RR' do
|
50
|
+
def configure_project_generator(project_generator)
|
51
|
+
super
|
52
|
+
project_generator.configure do |project|
|
53
|
+
project.autorequire_gems = true
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def adapters_that_should_be_loaded
|
58
|
+
[:TestUnit2]
|
59
|
+
end
|
60
|
+
|
61
|
+
including_the_adapter_manually_works
|
62
|
+
end
|
63
|
+
|
64
|
+
context 'when RR is being required manually' do
|
65
|
+
def configure_project_generator(project_generator)
|
66
|
+
super
|
67
|
+
project_generator.configure do |project|
|
68
|
+
project.autorequire_gems = false
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def adapters_that_should_be_loaded
|
73
|
+
[:TestUnit2]
|
74
|
+
end
|
75
|
+
|
76
|
+
rr_hooks_into_the_test_framework_automatically
|
77
|
+
including_the_adapter_manually_works
|
78
|
+
|
79
|
+
specify "when RR raises an error it raises a failure not an exception" do
|
80
|
+
project = generate_project
|
81
|
+
project.add_test_file do |file|
|
82
|
+
file.add_test_case do |test_case|
|
83
|
+
test_case.add_test <<-EOT
|
84
|
+
object = Object.new
|
85
|
+
mock(object).foo
|
86
|
+
EOT
|
87
|
+
end
|
88
|
+
end
|
89
|
+
result = project.run_tests
|
90
|
+
result.should fail_with_output(/1 failure/)
|
91
|
+
end
|
92
|
+
|
93
|
+
specify "throwing an error in teardown doesn't mess things up" do
|
94
|
+
project = generate_project
|
95
|
+
project.add_test_file do |file|
|
96
|
+
file.add_test_case do |test_case|
|
97
|
+
test_case.add_to_body <<-EOT
|
98
|
+
def teardown
|
99
|
+
raise 'hell'
|
100
|
+
end
|
101
|
+
EOT
|
102
|
+
test_case.add_test("") # doesn't matter
|
103
|
+
end
|
104
|
+
end
|
105
|
+
result = project.run_tests
|
106
|
+
result.should fail_with_output(/1 error/)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
@@ -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
|