rr 1.0.5 → 1.1.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +6 -14
  2. data/CHANGES.md +24 -0
  3. data/LICENSE +2 -2
  4. data/README.md +124 -741
  5. data/VERSION +1 -1
  6. data/lib/rr.rb +2 -103
  7. data/lib/rr/adapters/minitest.rb +21 -13
  8. data/lib/rr/adapters/minitest_active_support.rb +34 -0
  9. data/lib/rr/adapters/none.rb +17 -0
  10. data/lib/rr/adapters/{rspec.rb → rspec/invocation_matcher.rb} +2 -27
  11. data/lib/rr/adapters/rspec_1.rb +42 -0
  12. data/lib/rr/adapters/rspec_2.rb +24 -0
  13. data/lib/rr/adapters/test_unit_1.rb +54 -0
  14. data/lib/rr/adapters/test_unit_2.rb +13 -0
  15. data/lib/rr/adapters/test_unit_2_active_support.rb +35 -0
  16. data/lib/rr/autohook.rb +43 -0
  17. data/lib/rr/core_ext/array.rb +12 -0
  18. data/lib/rr/core_ext/enumerable.rb +16 -0
  19. data/lib/rr/core_ext/hash.rb +20 -0
  20. data/lib/rr/core_ext/range.rb +8 -0
  21. data/lib/rr/core_ext/regexp.rb +8 -0
  22. data/lib/rr/double.rb +4 -4
  23. data/lib/rr/double_definitions/double_definition.rb +9 -3
  24. data/lib/rr/errors.rb +21 -0
  25. data/lib/rr/expectations/argument_equality_expectation.rb +10 -7
  26. data/lib/rr/expectations/times_called_expectation.rb +2 -8
  27. data/lib/rr/injections/double_injection.rb +1 -1
  28. data/lib/rr/method_dispatches/base_method_dispatch.rb +1 -1
  29. data/lib/rr/recorded_calls.rb +12 -12
  30. data/lib/rr/space.rb +5 -3
  31. data/lib/rr/times_called_matchers/never_matcher.rb +2 -2
  32. data/lib/rr/wildcard_matchers/anything.rb +2 -2
  33. data/lib/rr/wildcard_matchers/boolean.rb +3 -7
  34. data/lib/rr/wildcard_matchers/duck_type.rb +11 -15
  35. data/lib/rr/wildcard_matchers/hash_including.rb +14 -13
  36. data/lib/rr/wildcard_matchers/is_a.rb +6 -7
  37. data/lib/rr/wildcard_matchers/satisfy.rb +8 -8
  38. data/lib/rr/without_autohook.rb +112 -0
  39. data/rr.gemspec +28 -0
  40. data/spec/global_helper.rb +12 -0
  41. data/spec/suite.rb +93 -0
  42. data/spec/suites/common/adapter_tests.rb +37 -0
  43. data/spec/suites/common/rails_integration_test.rb +175 -0
  44. data/spec/suites/common/test_unit_tests.rb +25 -0
  45. data/spec/suites/minitest/integration/minitest_test.rb +13 -0
  46. data/spec/suites/minitest/test_helper.rb +3 -0
  47. data/spec/suites/rspec_1/integration/rspec_1_spec.rb +20 -0
  48. data/spec/suites/rspec_1/integration/test_unit_1_rails_spec.rb +19 -0
  49. data/spec/suites/rspec_1/integration/test_unit_2_rails_spec.rb +18 -0
  50. data/spec/suites/rspec_1/spec_helper.rb +24 -0
  51. data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +47 -0
  52. data/spec/suites/rspec_2/functional/dont_allow_spec.rb +12 -0
  53. data/spec/suites/rspec_2/functional/dsl_spec.rb +13 -0
  54. data/spec/suites/rspec_2/functional/instance_of_spec.rb +14 -0
  55. data/spec/suites/rspec_2/functional/mock_spec.rb +241 -0
  56. data/spec/suites/rspec_2/functional/proxy_spec.rb +136 -0
  57. data/spec/suites/rspec_2/functional/spy_spec.rb +41 -0
  58. data/spec/suites/rspec_2/functional/strong_spec.rb +79 -0
  59. data/spec/suites/rspec_2/functional/stub_spec.rb +190 -0
  60. data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +128 -0
  61. data/spec/suites/rspec_2/integration/minitest_rails_spec.rb +15 -0
  62. data/spec/suites/rspec_2/integration/rspec_2_spec.rb +20 -0
  63. data/spec/suites/rspec_2/integration/test_unit_rails_spec.rb +14 -0
  64. data/spec/suites/rspec_2/spec_helper.rb +27 -0
  65. data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +32 -0
  66. data/spec/suites/rspec_2/support/shared_examples/space.rb +13 -0
  67. data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +9 -0
  68. data/spec/suites/rspec_2/unit/adapters/rr_methods/double_creators_spec.rb +135 -0
  69. data/spec/suites/rspec_2/unit/adapters/rr_methods/space_spec.rb +101 -0
  70. data/spec/suites/rspec_2/unit/adapters/rr_methods/wildcard_matchers_spec.rb +69 -0
  71. data/spec/suites/rspec_2/unit/adapters/rspec/invocation_matcher_spec.rb +297 -0
  72. data/spec/suites/rspec_2/unit/adapters/rspec_spec.rb +85 -0
  73. data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +39 -0
  74. data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +81 -0
  75. data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +55 -0
  76. data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +41 -0
  77. data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +41 -0
  78. data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +114 -0
  79. data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +93 -0
  80. data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +446 -0
  81. data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +67 -0
  82. data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +48 -0
  83. data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +14 -0
  84. data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +135 -0
  85. data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +30 -0
  86. data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
  87. data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +61 -0
  88. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +22 -0
  89. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +37 -0
  90. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +43 -0
  91. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +58 -0
  92. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +35 -0
  93. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +39 -0
  94. data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +88 -0
  95. data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +545 -0
  96. data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +32 -0
  97. data/spec/suites/rspec_2/unit/proc_from_block_spec.rb +14 -0
  98. data/spec/suites/rspec_2/unit/rr_spec.rb +28 -0
  99. data/spec/suites/rspec_2/unit/space_spec.rb +595 -0
  100. data/spec/suites/rspec_2/unit/spy_verification_spec.rb +133 -0
  101. data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +46 -0
  102. data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +54 -0
  103. data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +69 -0
  104. data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +69 -0
  105. data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +54 -0
  106. data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +75 -0
  107. data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +117 -0
  108. data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +33 -0
  109. data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +45 -0
  110. data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +64 -0
  111. data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +64 -0
  112. data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +55 -0
  113. data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +46 -0
  114. data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +57 -0
  115. data/spec/suites/test_unit_1/integration/test_unit_1_test.rb +6 -0
  116. data/spec/suites/test_unit_1/test_helper.rb +7 -0
  117. data/spec/suites/test_unit_2/integration/test_unit_2_test.rb +6 -0
  118. data/spec/suites/test_unit_2/test_helper.rb +3 -0
  119. metadata +183 -19
  120. data/Gemfile +0 -9
  121. data/Rakefile +0 -34
  122. data/lib/rr/adapters/rspec2.rb +0 -30
  123. data/lib/rr/adapters/test_unit.rb +0 -33
  124. data/lib/rr/errors/argument_equality_error.rb +0 -6
  125. data/lib/rr/wildcard_matchers/range.rb +0 -7
  126. data/lib/rr/wildcard_matchers/regexp.rb +0 -7
  127. data/spec/runner.rb +0 -41
@@ -0,0 +1,25 @@
1
+ require File.expand_path('../adapter_tests', __FILE__)
2
+
3
+ module TestUnitTests
4
+ def self.included(base)
5
+ base.class_eval { include AdapterTests }
6
+ end
7
+
8
+ def test_using_assert_received
9
+ subject = Object.new
10
+ stub(subject).foobar(1, 2)
11
+ subject.foobar(1, 2)
12
+ assert_received(subject) {|s| s.foobar(1, 2) }
13
+
14
+ error_class = RR::Errors.error_class(
15
+ RR::Errors::SpyVerificationErrors::InvocationCountError
16
+ )
17
+ assert_raise(error_class) do
18
+ assert_received(subject) {|s| s.foobar(1, 2, 3) }
19
+ end
20
+ end
21
+
22
+ def test_trim_backtrace_is_set
23
+ assert RR.trim_backtrace
24
+ end
25
+ end
@@ -0,0 +1,13 @@
1
+ require File.expand_path('../../test_helper', __FILE__)
2
+ require File.expand_path('../../../common/test_unit_tests', __FILE__)
3
+
4
+ class MiniTestIntegrationTest < MiniTest::Unit::TestCase
5
+ # Test::Unit compatibility
6
+ alias_method :assert_raise, :assert_raises
7
+
8
+ include TestUnitTests
9
+
10
+ def test_backtrace_tweaking
11
+ skip "test this later"
12
+ end
13
+ end
@@ -0,0 +1,3 @@
1
+ require 'minitest/autorun'
2
+
3
+ require File.expand_path('../../../global_helper', __FILE__)
@@ -0,0 +1,20 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+ require File.expand_path('../../../common/adapter_tests', __FILE__)
3
+
4
+ describe 'Integration with RSpec 1' do
5
+ include AdapterTests
6
+
7
+ def assert_equal(expected, actual)
8
+ actual.should be == expected
9
+ end
10
+
11
+ def assert_raise(error, message=nil, &block)
12
+ expect(&block).to raise_error(error, message)
13
+ end
14
+
15
+ instance_methods.each do |method_name|
16
+ if method_name =~ /^test_(.+)$/
17
+ it(method_name) { __send__(method_name) }
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,19 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+ require File.expand_path('../../../common/rails_integration_test', __FILE__)
3
+
4
+ describe 'Integration between TestUnit and Rails' do
5
+ include IntegrationWithRails
6
+
7
+ def bootstrap
8
+ <<-EOT
9
+ RAILS_ROOT = File.expand_path(__FILE__)
10
+ require 'test/unit'
11
+
12
+ require 'rubygems'
13
+ require 'rack'
14
+ require 'active_support/all'
15
+ require 'action_controller'
16
+ require 'active_support/test_case'
17
+ EOT
18
+ end
19
+ end
@@ -0,0 +1,18 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+ require File.expand_path('../../../common/rails_integration_test', __FILE__)
3
+
4
+ describe 'Integration between TestUnit and Rails' do
5
+ include IntegrationWithRails
6
+
7
+ def bootstrap
8
+ <<-EOT
9
+ RAILS_ROOT = File.expand_path(__FILE__)
10
+ require 'rubygems'
11
+ require 'rack'
12
+ require 'test/unit'
13
+ require 'active_support/all'
14
+ require 'action_controller'
15
+ require 'active_support/test_case'
16
+ EOT
17
+ end
18
+ end
@@ -0,0 +1,24 @@
1
+ require 'spec/autorun'
2
+
3
+ require File.expand_path('../../../global_helper', __FILE__)
4
+
5
+ module ExampleMethods
6
+ def eigen(object)
7
+ class << object; self; end
8
+ end
9
+ end
10
+
11
+ module ExampleGroupMethods
12
+ def macro(name, &implementation)
13
+ (class << self; self; end).class_eval do
14
+ define_method(name, &implementation)
15
+ end
16
+ end
17
+ end
18
+
19
+ Spec::Runner.configure do |c|
20
+ c.include ExampleMethods
21
+ c.extend ExampleGroupMethods
22
+ end
23
+
24
+ Dir[ File.expand_path('../shared/*.rb', __FILE__) ].each {|fn| require fn }
@@ -0,0 +1,47 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+
3
+ describe '#any_instance_of' do
4
+ context "when passed a block" do
5
+ it "applies to instances instantiated before the Double expectation was created" do
6
+ subject_class = Class.new
7
+ subject = subject_class.new
8
+ class_called = false
9
+ any_instance_of(subject_class) do |o|
10
+ stub(o).to_s {"Subject is stubbed"}
11
+ stub.proxy(o).class {|klass| class_called = true; klass}
12
+ stub(o).foobar {:baz}
13
+ end
14
+
15
+ expect(subject.to_s).to eq "Subject is stubbed"
16
+ expect(subject.class).to eq subject_class
17
+ expect(class_called).to eq true
18
+ expect(subject.foobar).to eq :baz
19
+
20
+ RR.reset
21
+
22
+ expect(subject.to_s).to_not eq "Subject is stubbed"
23
+ class_called = false
24
+ expect(subject.class).to eq subject_class
25
+ expect(class_called).to eq false
26
+ expect(subject).to_not respond_to(:baz)
27
+ end
28
+ end
29
+
30
+ context "when passed a Hash" do
31
+ it "stubs methods (key) with the value on instances instantiated before the Double expectation was created" do
32
+ subject_class = Class.new
33
+ subject = subject_class.new
34
+ expect(subject).to_not respond_to(:baz)
35
+
36
+ any_instance_of(subject_class, :to_s => "Subject is stubbed", :foobar => lambda {:baz})
37
+
38
+ expect(subject.to_s).to eq "Subject is stubbed"
39
+ expect(subject.foobar).to eq :baz
40
+
41
+ RR.reset
42
+
43
+ expect(subject.to_s).to_not eq "Subject is stubbed"
44
+ expect(subject).to_not respond_to(:baz)
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,12 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+
3
+ describe '#dont_allow' do
4
+ subject { Object.new }
5
+
6
+ it "raises a TimesCalledError if the method is actually called" do
7
+ dont_allow(subject).foobar
8
+ expect {
9
+ subject.foobar
10
+ }.to raise_error(RR::Errors::TimesCalledError)
11
+ end
12
+ end
@@ -0,0 +1,13 @@
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
@@ -0,0 +1,14 @@
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
@@ -0,0 +1,241 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+
3
+ describe '#mock' do
4
+ subject { Object.new }
5
+
6
+ it "creates a mock DoubleInjection Double" do
7
+ mock(subject).foobar(1, 2) {:baz}
8
+ expect(subject.foobar(1, 2)).to eq :baz
9
+ end
10
+
11
+ it "mocks via inline call" do
12
+ mock(subject).to_s {"a value"}
13
+ expect(subject.to_s).to eq "a value"
14
+ expect { subject.to_s }.to raise_error(RR::Errors::TimesCalledError)
15
+ RR.reset
16
+ end
17
+
18
+ describe ".once.ordered" do
19
+ it "returns the values in the ordered called" do
20
+ mock(subject).to_s {"value 1"}.ordered
21
+ mock(subject).to_s {"value 2"}.twice
22
+ expect(subject.to_s).to eq "value 1"
23
+ expect(subject.to_s).to eq "value 2"
24
+ expect(subject.to_s).to eq "value 2"
25
+ expect { subject.to_s }.to raise_error(RR::Errors::TimesCalledError)
26
+ RR.reset
27
+ end
28
+ end
29
+
30
+ context "when the subject is a proxy for the object with the defined method" do
31
+ it "stubs the method on the proxy object" do
32
+ proxy_target = Class.new {def foobar; :original_foobar; end}.new
33
+ proxy = Class.new do
34
+ def initialize(target)
35
+ @target = target
36
+ end
37
+
38
+ instance_methods.each do |m|
39
+ unless m =~ /^_/ || m.to_s == 'object_id' || m.to_s == 'method_missing'
40
+ alias_method "__blank_slated_#{m}", m
41
+ undef_method m
42
+ end
43
+ end
44
+
45
+ def method_missing(method_name, *args, &block)
46
+ @target.send(method_name, *args, &block)
47
+ end
48
+ end.new(proxy_target)
49
+ expect(proxy.methods).to match_array(proxy_target.methods)
50
+
51
+ mock(proxy).foobar {:new_foobar}
52
+ expect(proxy.foobar).to eq :new_foobar
53
+ end
54
+ end
55
+
56
+ it 'allows terse chaining' do
57
+ mock(subject).first(1) {mock(Object.new).second(2) {mock(Object.new).third(3) {4}}}
58
+ expect(subject.first(1).second(2).third(3)).to eq 4
59
+
60
+ mock(subject).first(1) {mock!.second(2) {mock!.third(3) {4}}}
61
+ expect(subject.first(1).second(2).third(3)).to eq 4
62
+
63
+ mock(subject).first(1) {mock!.second(2).mock!.third(3) {4}}
64
+ expect(subject.first(1).second(2).third(3)).to eq 4
65
+
66
+ mock(subject).first(1) {mock!.second(2).mock! {third(3) {4}}}
67
+ expect(subject.first(1).second(2).third(3)).to eq 4
68
+
69
+ mock(subject).first(1).mock!.second(2).mock!.third(3) {4}
70
+ expect(subject.first(1).second(2).third(3)).to eq 4
71
+ end
72
+
73
+ it 'allows chaining with proxy' do
74
+ pending "this is failing with a TimesCalledError"
75
+
76
+ find_return_value = Object.new
77
+ def find_return_value.child
78
+ :the_child
79
+ end
80
+ (class << subject; self; end).class_eval do
81
+ define_method(:find) do |id|
82
+ id == '1' ? find_return_value : raise(ArgumentError)
83
+ end
84
+ end
85
+
86
+ mock.proxy(subject).find('1').mock.proxy!.child
87
+ expect(subject.find('1').child).to eq :the_child
88
+ end
89
+
90
+ it 'allows branched chaining' do
91
+ mock(subject).first do
92
+ mock! do |expect|
93
+ expect.branch1 {mock!.branch11 {11}}
94
+ expect.branch2 {mock!.branch22 {22}}
95
+ end
96
+ end
97
+ o = subject.first
98
+ expect(o.branch1.branch11).to eq 11
99
+ expect(o.branch2.branch22).to eq 22
100
+ end
101
+
102
+ it 'allows chained ordering' do
103
+ mock(subject).to_s {"value 1"}.then.to_s {"value 2"}.twice.then.to_s {"value 3"}.once
104
+ expect(subject.to_s).to eq "value 1"
105
+ expect(subject.to_s).to eq "value 2"
106
+ expect(subject.to_s).to eq "value 2"
107
+ expect(subject.to_s).to eq "value 3"
108
+ expect { subject.to_s }.to raise_error(RR::Errors::TimesCalledError)
109
+ RR.reset
110
+ end
111
+
112
+ it "mocks via block with argument" do
113
+ mock subject do |c|
114
+ c.to_s {"a value"}
115
+ c.to_sym {:crazy}
116
+ end
117
+ expect(subject.to_s).to eq "a value"
118
+ expect(subject.to_sym).to eq :crazy
119
+ end
120
+
121
+ it "mocks via block without argument" do
122
+ mock subject do
123
+ to_s {"a value"}
124
+ to_sym {:crazy}
125
+ end
126
+ expect(subject.to_s).to eq "a value"
127
+ expect(subject.to_sym).to eq :crazy
128
+ end
129
+
130
+ it "has wildcard matchers" do
131
+ mock(subject).foobar(
132
+ is_a(String),
133
+ anything,
134
+ numeric,
135
+ boolean,
136
+ duck_type(:to_s),
137
+ /abc/
138
+ ) {"value 1"}.twice
139
+ expect(subject.foobar(
140
+ 'hello',
141
+ Object.new,
142
+ 99,
143
+ false,
144
+ "My String",
145
+ "Tabcola"
146
+ )).to eq("value 1")
147
+ expect {
148
+ subject.foobar(:failure)
149
+ }.to raise_error(RR::Errors::DoubleNotFoundError)
150
+
151
+ RR.reset
152
+ end
153
+
154
+ it "mocks methods without letters" do
155
+ mock(subject, :==).with(55)
156
+
157
+ subject == 55
158
+ expect {
159
+ subject == 99
160
+ }.to raise_error(RR::Errors::DoubleNotFoundError)
161
+
162
+ RR.reset
163
+ end
164
+
165
+ it "expects a method call to a mock via another mock's block yield only once" do
166
+ cage = Object.new
167
+ cat = Object.new
168
+ mock(cat).miau # should be expected to be called only once
169
+ mock(cage).find_cat.yields(cat)
170
+ mock(cage).cats
171
+ cage.find_cat { |c| c.miau }
172
+ cage.cats
173
+ end
174
+
175
+ describe "on class method" do
176
+ class SampleClass1
177
+ def self.hello; "hello!"; end
178
+ end
179
+
180
+ class SampleClass2 < SampleClass1; end
181
+
182
+ it "can mock" do
183
+ mock(SampleClass1).hello { "hola!" }
184
+
185
+ expect(SampleClass1.hello).to eq "hola!"
186
+ end
187
+
188
+ it "does not override subclasses" do
189
+ mock(SampleClass1).hello { "hi!" }
190
+ SampleClass1.hello
191
+ expect(SampleClass2.hello).to eq "hello!"
192
+ end
193
+
194
+ it "should not get affected from a previous example" do
195
+ expect(SampleClass2.hello).to eq "hello!"
196
+ end
197
+ end
198
+
199
+ # bug #44
200
+ describe 'when wrapped in an array that is then flattened' do
201
+ context 'when the method being mocked is not defined' do
202
+ it "does not raise an error" do
203
+ mock(subject).foo
204
+ subject.foo
205
+ expect([subject].flatten).to eq [subject]
206
+ end
207
+
208
+ it "honors a #to_ary that already exists" do
209
+ subject.instance_eval do
210
+ def to_ary; []; end
211
+ end
212
+ mock(subject).foo
213
+ subject.foo
214
+ expect([subject].flatten).to eq []
215
+ end
216
+ end
217
+
218
+ context 'when the method being mocked is defined' do
219
+ before do
220
+ subject.instance_eval do
221
+ def foo; end
222
+ end
223
+ end
224
+
225
+ it "does not raise an error" do
226
+ mock(subject).foo
227
+ subject.foo
228
+ expect([subject].flatten).to eq [subject]
229
+ end
230
+
231
+ it "honors a #to_ary that already exists" do
232
+ eigen(subject).class_eval do
233
+ def to_ary; []; end
234
+ end
235
+ mock(subject).foo
236
+ subject.foo
237
+ expect([subject].flatten).to eq []
238
+ end
239
+ end
240
+ end
241
+ end