rr 1.1.1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (223) hide show
  1. checksums.yaml +5 -5
  2. data/Appraisals +6 -0
  3. data/CHANGES.md +102 -1
  4. data/CREDITS.md +5 -0
  5. data/Gemfile +3 -0
  6. data/README.md +91 -110
  7. data/Rakefile +43 -0
  8. data/doc/02_syntax_comparison.md +1 -0
  9. data/gemfiles/ruby_19_rspec_2.gemfile +14 -0
  10. data/gemfiles/ruby_19_rspec_2.gemfile.lock +49 -0
  11. data/gemfiles/ruby_19_rspec_2_rails_4.gemfile +15 -0
  12. data/gemfiles/ruby_19_rspec_2_rails_4.gemfile.lock +119 -0
  13. data/lib/rr/class_instance_method_defined.rb +1 -1
  14. data/lib/rr/core_ext/array.rb +2 -0
  15. data/lib/rr/core_ext/hash.rb +2 -0
  16. data/lib/rr/deprecations.rb +97 -0
  17. data/lib/rr/double.rb +28 -10
  18. data/lib/rr/double_definitions/double_definition.rb +39 -16
  19. data/lib/rr/double_definitions/double_definition_create.rb +5 -5
  20. data/lib/rr/double_definitions/double_definition_create_blank_slate.rb +10 -4
  21. data/lib/rr/double_definitions/double_injections/any_instance_of.rb +1 -1
  22. data/lib/rr/double_definitions/double_injections/instance.rb +2 -2
  23. data/lib/rr/double_definitions/strategies/strategy.rb +27 -8
  24. data/lib/rr/double_definitions/strategies/verification/mock.rb +8 -2
  25. data/lib/rr/double_matches.rb +4 -3
  26. data/lib/rr/dsl.rb +152 -0
  27. data/lib/rr/expectations/any_argument_expectation.rb +4 -4
  28. data/lib/rr/expectations/argument_equality_expectation.rb +43 -5
  29. data/lib/rr/injections/double_injection.rb +67 -19
  30. data/lib/rr/injections/method_missing_injection.rb +37 -6
  31. data/lib/rr/integrations.rb +13 -12
  32. data/lib/rr/integrations/decorator.rb +4 -1
  33. data/lib/rr/integrations/minitest_4.rb +1 -1
  34. data/lib/rr/integrations/minitest_4_active_support.rb +1 -1
  35. data/lib/rr/integrations/rspec/invocation_matcher.rb +0 -8
  36. data/lib/rr/integrations/rspec_2.rb +28 -3
  37. data/lib/rr/keyword_arguments.rb +15 -0
  38. data/lib/rr/method_dispatches/base_method_dispatch.rb +22 -5
  39. data/lib/rr/method_dispatches/method_dispatch.rb +21 -10
  40. data/lib/rr/method_dispatches/method_missing_dispatch.rb +14 -5
  41. data/lib/rr/recorded_call.rb +35 -0
  42. data/lib/rr/recorded_calls.rb +23 -9
  43. data/lib/rr/space.rb +15 -5
  44. data/lib/rr/spy_verification.rb +13 -5
  45. data/lib/rr/version.rb +1 -2
  46. data/lib/rr/wildcard_matchers.rb +10 -10
  47. data/lib/rr/without_autohook.rb +7 -14
  48. data/rr.gemspec +14 -5
  49. data/spec/custom_formatter_for_rspec.rb +18 -0
  50. data/spec/custom_formatter_for_rspec_2.rb +40 -0
  51. data/spec/defines_spec_suite_tasks.rb +57 -0
  52. data/spec/fixtures/rubygems_patch_for_187.rb +598 -0
  53. data/spec/global_helper.rb +38 -0
  54. data/spec/spec.opts +3 -0
  55. data/spec/spec_suite_configuration.rb +126 -0
  56. data/spec/spec_suite_runner.rb +47 -0
  57. data/spec/suites.yml +10 -0
  58. data/spec/suites/rspec_2/functional/any_instance_of_spec.rb +147 -0
  59. data/spec/suites/rspec_2/functional/dont_allow_spec.rb +17 -0
  60. data/spec/suites/rspec_2/functional/mock_bang_spec.rb +20 -0
  61. data/spec/suites/rspec_2/functional/mock_instance_of_spec.rb +14 -0
  62. data/spec/suites/rspec_2/functional/mock_instance_of_strong_spec.rb +15 -0
  63. data/spec/suites/rspec_2/functional/mock_proxy_instance_of_spec.rb +15 -0
  64. data/spec/suites/rspec_2/functional/mock_proxy_spec.rb +14 -0
  65. data/spec/suites/rspec_2/functional/mock_spec.rb +17 -0
  66. data/spec/suites/rspec_2/functional/mock_strong_spec.rb +14 -0
  67. data/spec/suites/rspec_2/functional/received_spec.rb +16 -0
  68. data/spec/suites/rspec_2/functional/spy_spec.rb +102 -0
  69. data/spec/suites/rspec_2/functional/stub_bang_spec.rb +20 -0
  70. data/spec/suites/rspec_2/functional/stub_instance_of_spec.rb +15 -0
  71. data/spec/suites/rspec_2/functional/stub_instance_of_strong_spec.rb +15 -0
  72. data/spec/suites/rspec_2/functional/stub_proxy_instance_of_spec.rb +16 -0
  73. data/spec/suites/rspec_2/functional/stub_proxy_spec.rb +45 -0
  74. data/spec/suites/rspec_2/functional/stub_spec.rb +71 -0
  75. data/spec/suites/rspec_2/functional/stub_strong_spec.rb +15 -0
  76. data/spec/suites/rspec_2/functional/wildcard_matchers_spec.rb +128 -0
  77. data/spec/suites/rspec_2/helper.rb +28 -0
  78. data/spec/suites/rspec_2/integration/minitest_4_spec.rb +109 -0
  79. data/spec/suites/rspec_2/integration/minitest_spec.rb +109 -0
  80. data/spec/suites/rspec_2/spec_helper.rb +3 -0
  81. data/spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb +32 -0
  82. data/spec/suites/rspec_2/support/mixins/double_definition_creator_helpers.rb +173 -0
  83. data/spec/suites/rspec_2/support/mixins/mock_definition_creator_helpers.rb +45 -0
  84. data/spec/suites/rspec_2/support/mixins/proxy_definition_creator_helpers.rb +33 -0
  85. data/spec/suites/rspec_2/support/mixins/stub_creator_helpers.rb +43 -0
  86. data/spec/suites/rspec_2/support/mixins/stub_definition_creator_helpers.rb +45 -0
  87. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_with_never_called_qualifier.rb +39 -0
  88. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_with_times_called_qualifier.rb +50 -0
  89. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_without_qualifiers.rb +131 -0
  90. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/dont_allow.rb +148 -0
  91. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_instance_of.rb +26 -0
  92. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_instance_of_strong.rb +28 -0
  93. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_proxy.rb +11 -0
  94. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_strong.rb +37 -0
  95. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mocking.rb +107 -0
  96. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_instance_of.rb +32 -0
  97. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_instance_of_strong.rb +39 -0
  98. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_proxy.rb +11 -0
  99. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_strong.rb +37 -0
  100. data/spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stubbing.rb +57 -0
  101. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/array_flatten_bug.rb +35 -0
  102. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/block_form.rb +31 -0
  103. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/comparing_arity.rb +63 -0
  104. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/object_is_proxy.rb +43 -0
  105. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/sequential_invocations.rb +26 -0
  106. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/setting_implementation.rb +51 -0
  107. data/spec/suites/rspec_2/support/shared_examples/double_definition_creators/yields.rb +81 -0
  108. data/spec/suites/rspec_2/support/shared_examples/space.rb +13 -0
  109. data/spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb +9 -0
  110. data/spec/suites/rspec_2/unit/core_ext/array_spec.rb +39 -0
  111. data/spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb +53 -0
  112. data/spec/suites/rspec_2/unit/core_ext/hash_spec.rb +55 -0
  113. data/spec/suites/rspec_2/unit/core_ext/range_spec.rb +41 -0
  114. data/spec/suites/rspec_2/unit/core_ext/regexp_spec.rb +41 -0
  115. data/spec/suites/rspec_2/unit/deprecations_spec.rb +27 -0
  116. data/spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb +114 -0
  117. data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb +93 -0
  118. data/spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb +446 -0
  119. data/spec/suites/rspec_2/unit/dsl/double_creators_spec.rb +133 -0
  120. data/spec/suites/rspec_2/unit/dsl/space_spec.rb +99 -0
  121. data/spec/suites/rspec_2/unit/dsl/wildcard_matchers_spec.rb +67 -0
  122. data/spec/suites/rspec_2/unit/errors/rr_error_spec.rb +67 -0
  123. data/spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb +48 -0
  124. data/spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb +14 -0
  125. data/spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb +135 -0
  126. data/spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb +30 -0
  127. data/spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb +92 -0
  128. data/spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb +61 -0
  129. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb +22 -0
  130. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb +37 -0
  131. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb +43 -0
  132. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb +58 -0
  133. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb +35 -0
  134. data/spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb +39 -0
  135. data/spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb +88 -0
  136. data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb +533 -0
  137. data/spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb +32 -0
  138. data/spec/suites/rspec_2/unit/integrations/rspec/invocation_matcher_spec.rb +297 -0
  139. data/spec/suites/rspec_2/unit/integrations/rspec_spec.rb +70 -0
  140. data/spec/suites/rspec_2/unit/rr_spec.rb +28 -0
  141. data/spec/suites/rspec_2/unit/space_spec.rb +598 -0
  142. data/spec/suites/rspec_2/unit/spy_verification_spec.rb +133 -0
  143. data/spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb +46 -0
  144. data/spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb +54 -0
  145. data/spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb +69 -0
  146. data/spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb +69 -0
  147. data/spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb +54 -0
  148. data/spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb +75 -0
  149. data/spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb +117 -0
  150. data/spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb +33 -0
  151. data/spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb +45 -0
  152. data/spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb +64 -0
  153. data/spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb +64 -0
  154. data/spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb +55 -0
  155. data/spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb +46 -0
  156. data/spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb +57 -0
  157. data/spec/support/adapter.rb +22 -0
  158. data/spec/support/adapter_tests/base.rb +45 -0
  159. data/spec/support/adapter_tests/minitest.rb +7 -0
  160. data/spec/support/adapter_tests/rspec.rb +70 -0
  161. data/spec/support/adapter_tests/test_unit.rb +47 -0
  162. data/spec/support/command_runner.rb +105 -0
  163. data/spec/support/generator.rb +56 -0
  164. data/spec/support/integration_tests/base.rb +64 -0
  165. data/spec/support/integration_tests/rails.rb +60 -0
  166. data/spec/support/integration_tests/rails_minitest.rb +13 -0
  167. data/spec/support/integration_tests/rails_rspec.rb +13 -0
  168. data/spec/support/integration_tests/rails_test_unit.rb +13 -0
  169. data/spec/support/integration_tests/rails_test_unit_like.rb +13 -0
  170. data/spec/support/integration_tests/ruby.rb +7 -0
  171. data/spec/support/integration_tests/ruby_minitest.rb +13 -0
  172. data/spec/support/integration_tests/ruby_rspec.rb +13 -0
  173. data/spec/support/integration_tests/ruby_test_unit.rb +13 -0
  174. data/spec/support/matchers/be_a_subset_of_matcher.rb +24 -0
  175. data/spec/support/project/cucumber.rb +50 -0
  176. data/spec/support/project/generator.rb +348 -0
  177. data/spec/support/project/minitest.rb +39 -0
  178. data/spec/support/project/rails.rb +199 -0
  179. data/spec/support/project/rails_minitest.rb +17 -0
  180. data/spec/support/project/rails_rspec.rb +50 -0
  181. data/spec/support/project/rails_test_unit.rb +17 -0
  182. data/spec/support/project/rails_test_unit_like.rb +17 -0
  183. data/spec/support/project/rspec.rb +69 -0
  184. data/spec/support/project/ruby.rb +34 -0
  185. data/spec/support/project/ruby_minitest.rb +11 -0
  186. data/spec/support/project/ruby_rspec.rb +29 -0
  187. data/spec/support/project/ruby_test_unit.rb +11 -0
  188. data/spec/support/project/ruby_test_unit_like.rb +21 -0
  189. data/spec/support/project/test_unit.rb +29 -0
  190. data/spec/support/project/test_unit_like.rb +7 -0
  191. data/spec/support/project/tests_runner.rb +22 -0
  192. data/spec/support/test.sqlite3 +0 -0
  193. data/spec/support/test_case/generator.rb +53 -0
  194. data/spec/support/test_case/minitest.rb +13 -0
  195. data/spec/support/test_case/rspec.rb +19 -0
  196. data/spec/support/test_case/test_unit.rb +21 -0
  197. data/spec/support/test_file/generator.rb +120 -0
  198. data/spec/support/test_file/minitest.rb +19 -0
  199. data/spec/support/test_file/rails_minitest.rb +7 -0
  200. data/spec/support/test_file/rails_rspec.rb +12 -0
  201. data/spec/support/test_file/rails_test_unit.rb +25 -0
  202. data/spec/support/test_file/rspec.rb +33 -0
  203. data/spec/support/test_file/test_unit.rb +36 -0
  204. data/spec/support/test_helper/generator.rb +27 -0
  205. data/spec/support/test_helper/minitest.rb +7 -0
  206. data/spec/support/test_helper/rails.rb +31 -0
  207. data/spec/support/test_helper/rails_minitest.rb +7 -0
  208. data/spec/support/test_helper/rails_rspec.rb +25 -0
  209. data/spec/support/test_helper/rails_test_unit.rb +23 -0
  210. data/spec/support/test_helper/rspec.rb +7 -0
  211. data/spec/support/test_helper/ruby.rb +31 -0
  212. data/spec/support/test_helper/test_unit.rb +7 -0
  213. metadata +240 -19
  214. data/VERSION +0 -1
  215. data/lib/rr/adapters.rb +0 -44
  216. data/lib/rr/adapters/rr_methods.rb +0 -142
  217. data/lib/rr/integrations/rspec_1.rb +0 -46
  218. data/lib/rr/integrations/test_unit_1.rb +0 -63
  219. data/lib/rr/integrations/test_unit_2.rb +0 -15
  220. data/lib/rr/integrations/test_unit_200.rb +0 -27
  221. data/lib/rr/integrations/test_unit_200_active_support.rb +0 -25
  222. data/lib/rr/integrations/test_unit_2_active_support.rb +0 -38
  223. data/lib/rr/proc_from_block.rb +0 -11
@@ -0,0 +1,33 @@
1
+ require File.expand_path('../../test_case/rspec', __FILE__)
2
+
3
+ module TestFile
4
+ module RSpec
5
+ def setup(project, index)
6
+ super
7
+ test_case_generator.mixin TestCase::RSpec
8
+ self.directory = File.join(project.directory, 'spec')
9
+ end
10
+
11
+ def content
12
+ content = super
13
+ <<-EOT + content
14
+ require 'spec_helper'
15
+ require '#{File.join(project.root_dir, 'spec/support/adapter_tests/rspec')}'
16
+ EOT
17
+ end
18
+
19
+ def filename_prefix
20
+ "#{"%02d" % @index}_spec"
21
+ end
22
+
23
+ # XXX: Do we need this if this is already in RSpecTestCase?
24
+ def add_working_test_case_with_adapter_tests
25
+ add_working_test_case do |test_case|
26
+ test_case.add_to_before_tests <<-EOT
27
+ include AdapterTests::RSpec
28
+ EOT
29
+ yield test_case if block_given?
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,36 @@
1
+ require File.expand_path('../../test_case/test_unit', __FILE__)
2
+
3
+ module TestFile
4
+ module TestUnit
5
+ def setup(project, index)
6
+ super
7
+ test_case_generator.mixin TestCase::TestUnit
8
+ self.directory = File.join(project.directory, 'test')
9
+ test_case_generator.configure do |test_case|
10
+ test_case.superclass = 'Test::Unit::TestCase'
11
+ end
12
+ end
13
+
14
+ def content
15
+ content = super
16
+ <<-EOT + content
17
+ require 'test_helper'
18
+ require '#{File.join(project.root_dir, 'spec/support/adapter_tests/test_unit')}'
19
+ EOT
20
+ end
21
+
22
+ def filename_prefix
23
+ "#{"%02d" % @index}_test"
24
+ end
25
+
26
+ # XXX: Do we need this if this is already in TestUnitTestCase?
27
+ def add_working_test_case_with_adapter_tests
28
+ add_working_test_case do |test_case|
29
+ test_case.add_to_before_tests <<-EOT
30
+ include AdapterTests::TestUnit
31
+ EOT
32
+ yield test_case if block_given?
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,27 @@
1
+ require File.expand_path('../../generator', __FILE__)
2
+
3
+ module TestHelper
4
+ class Generator
5
+ include ::Generator
6
+
7
+ attr_reader :project, :requires, :prelude
8
+
9
+ def setup(project)
10
+ super
11
+ @project = project
12
+ @requires = []
13
+ @prelude = ""
14
+ end
15
+
16
+ def add_to_requires(path)
17
+ @requires << path
18
+ end
19
+
20
+ def add_to_prelude(string)
21
+ @prelude << string + "\n"
22
+ end
23
+
24
+ def call
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,7 @@
1
+ require File.expand_path('../test_unit', __FILE__)
2
+
3
+ module TestHelper
4
+ module Minitest
5
+ include TestUnit
6
+ end
7
+ end
@@ -0,0 +1,31 @@
1
+ module TestHelper
2
+ module Rails
3
+ def call
4
+ super
5
+
6
+ content = File.read(path)
7
+
8
+ regexp = Regexp.new(
9
+ '(' + start_of_requires.source + '.+?\n\n)',
10
+ Regexp::MULTILINE
11
+ )
12
+ requires = project.requires_with_rr(@requires)
13
+ require_lines = project.require_lines(requires).
14
+ map { |str| "#{str}\n" }.
15
+ join
16
+ unless content.gsub!(regexp, '\1' + require_lines + "\n")
17
+ raise "Regexp didn't match!\nRegex: #{regexp}\nContent:\n#{content}"
18
+ end
19
+
20
+ content << "\n\n" + @prelude
21
+
22
+ File.open(path, 'w') { |f| f.write(content) }
23
+
24
+ if RR.debug?
25
+ puts "~ Content of #{File.basename(path)} ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
26
+ puts File.read(path)
27
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,7 @@
1
+ require File.expand_path('../rails_test_unit', __FILE__)
2
+
3
+ module TestHelper
4
+ module RailsMinitest
5
+ include RailsTestUnit
6
+ end
7
+ end
@@ -0,0 +1,25 @@
1
+ require File.expand_path('../rails', __FILE__)
2
+
3
+ module TestHelper
4
+ module RailsRSpec
5
+ include Rails
6
+
7
+ def path
8
+ File.join(project.directory, 'spec/spec_helper.rb')
9
+ end
10
+
11
+ def start_of_requires
12
+ if project.rails_version == 2
13
+ Regexp.new(Regexp.escape(%q!require File.expand_path(File.join(File.dirname(__FILE__),'..','config','environment'))!))
14
+ else
15
+ Regexp.new(
16
+ Regexp.escape('require File.expand_path(') +
17
+ %q/(?:"|')/ +
18
+ Regexp.escape('../../config/environment') +
19
+ %q/(?:"|')/ +
20
+ Regexp.escape(', __FILE__)')
21
+ )
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,23 @@
1
+ require File.expand_path('../test_unit', __FILE__)
2
+ require File.expand_path('../rails', __FILE__)
3
+
4
+ module TestHelper
5
+ module RailsTestUnit
6
+ include TestUnit
7
+ include Rails
8
+
9
+ def start_of_requires
10
+ if project.rails_version == 2
11
+ Regexp.new(Regexp.escape('require File.expand_path(File.dirname(__FILE__) + "/../config/environment")'))
12
+ else
13
+ Regexp.new(
14
+ Regexp.escape('require File.expand_path(') +
15
+ %q/(?:"|')/ +
16
+ Regexp.escape('../../config/environment') +
17
+ %q/(?:"|')/ +
18
+ Regexp.escape(', __FILE__)')
19
+ )
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,7 @@
1
+ module TestHelper
2
+ module RSpec
3
+ def path
4
+ File.join(project.directory, 'spec/spec_helper.rb')
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,31 @@
1
+ module TestHelper
2
+ module Ruby
3
+ def call
4
+ super
5
+ File.open(path, 'w') do |f|
6
+ content = <<-EOT
7
+ require 'rubygems'
8
+ require 'bundler'
9
+ Bundler.setup
10
+ Bundler.require(:default)
11
+ EOT
12
+
13
+ requires = project.requires_with_rr(@requires)
14
+ require_lines = project.require_lines(requires).
15
+ map { |str| "#{str}\n" }.
16
+ join
17
+ content << "\n" + require_lines + "\n"
18
+
19
+ content << @prelude
20
+
21
+ if RR.debug?
22
+ puts "~ Content of #{File.basename(path)} ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
23
+ puts content
24
+ puts "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
25
+ end
26
+
27
+ f.write(content)
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,7 @@
1
+ module TestHelper
2
+ module TestUnit
3
+ def path
4
+ File.join(project.directory, 'test/test_helper.rb')
5
+ end
6
+ end
7
+ end
metadata CHANGED
@@ -1,35 +1,96 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
+ - Kouhei Sutou
7
8
  - Brian Takita
8
9
  - Elliot Winkler
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2013-06-18 00:00:00.000000000 Z
13
- dependencies: []
13
+ date: 2021-03-31 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rake
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ - !ruby/object:Gem::Dependency
44
+ name: test-unit
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ - !ruby/object:Gem::Dependency
58
+ name: test-unit-rr
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
14
71
  description: RR is a test double framework that features a rich selection of double
15
72
  techniques and a terse syntax.
16
73
  email:
17
- - elliot.winkler@gmail.com
74
+ - kou@cozmixng.org
18
75
  executables: []
19
76
  extensions: []
20
77
  extra_rdoc_files: []
21
78
  files:
79
+ - Appraisals
22
80
  - CHANGES.md
23
81
  - CREDITS.md
82
+ - Gemfile
24
83
  - LICENSE
25
84
  - README.md
26
- - VERSION
85
+ - Rakefile
27
86
  - doc/01_test_double.md
28
87
  - doc/02_syntax_comparison.md
29
88
  - doc/03_api_overview.md
89
+ - gemfiles/ruby_19_rspec_2.gemfile
90
+ - gemfiles/ruby_19_rspec_2.gemfile.lock
91
+ - gemfiles/ruby_19_rspec_2_rails_4.gemfile
92
+ - gemfiles/ruby_19_rspec_2_rails_4.gemfile.lock
30
93
  - lib/rr.rb
31
- - lib/rr/adapters.rb
32
- - lib/rr/adapters/rr_methods.rb
33
94
  - lib/rr/autohook.rb
34
95
  - lib/rr/blank_slate.rb
35
96
  - lib/rr/class_instance_method_defined.rb
@@ -38,6 +99,7 @@ files:
38
99
  - lib/rr/core_ext/hash.rb
39
100
  - lib/rr/core_ext/range.rb
40
101
  - lib/rr/core_ext/regexp.rb
102
+ - lib/rr/deprecations.rb
41
103
  - lib/rr/double.rb
42
104
  - lib/rr/double_definitions/child_double_definition_create.rb
43
105
  - lib/rr/double_definitions/double_definition.rb
@@ -59,6 +121,7 @@ files:
59
121
  - lib/rr/double_definitions/strategies/verification/stub.rb
60
122
  - lib/rr/double_definitions/strategies/verification/verification_strategy.rb
61
123
  - lib/rr/double_matches.rb
124
+ - lib/rr/dsl.rb
62
125
  - lib/rr/errors.rb
63
126
  - lib/rr/errors/double_definition_error.rb
64
127
  - lib/rr/errors/double_not_found_error.rb
@@ -85,17 +148,12 @@ files:
85
148
  - lib/rr/integrations/minitest_4_active_support.rb
86
149
  - lib/rr/integrations/minitest_active_support.rb
87
150
  - lib/rr/integrations/rspec/invocation_matcher.rb
88
- - lib/rr/integrations/rspec_1.rb
89
151
  - lib/rr/integrations/rspec_2.rb
90
- - lib/rr/integrations/test_unit_1.rb
91
- - lib/rr/integrations/test_unit_2.rb
92
- - lib/rr/integrations/test_unit_200.rb
93
- - lib/rr/integrations/test_unit_200_active_support.rb
94
- - lib/rr/integrations/test_unit_2_active_support.rb
152
+ - lib/rr/keyword_arguments.rb
95
153
  - lib/rr/method_dispatches/base_method_dispatch.rb
96
154
  - lib/rr/method_dispatches/method_dispatch.rb
97
155
  - lib/rr/method_dispatches/method_missing_dispatch.rb
98
- - lib/rr/proc_from_block.rb
156
+ - lib/rr/recorded_call.rb
99
157
  - lib/rr/recorded_calls.rb
100
158
  - lib/rr/space.rb
101
159
  - lib/rr/spy_verification.rb
@@ -121,7 +179,171 @@ files:
121
179
  - lib/rr/wildcard_matchers/satisfy.rb
122
180
  - lib/rr/without_autohook.rb
123
181
  - rr.gemspec
124
- homepage: http://rr.github.com/rr
182
+ - spec/custom_formatter_for_rspec.rb
183
+ - spec/custom_formatter_for_rspec_2.rb
184
+ - spec/defines_spec_suite_tasks.rb
185
+ - spec/fixtures/rubygems_patch_for_187.rb
186
+ - spec/global_helper.rb
187
+ - spec/spec.opts
188
+ - spec/spec_suite_configuration.rb
189
+ - spec/spec_suite_runner.rb
190
+ - spec/suites.yml
191
+ - spec/suites/rspec_2/functional/any_instance_of_spec.rb
192
+ - spec/suites/rspec_2/functional/dont_allow_spec.rb
193
+ - spec/suites/rspec_2/functional/mock_bang_spec.rb
194
+ - spec/suites/rspec_2/functional/mock_instance_of_spec.rb
195
+ - spec/suites/rspec_2/functional/mock_instance_of_strong_spec.rb
196
+ - spec/suites/rspec_2/functional/mock_proxy_instance_of_spec.rb
197
+ - spec/suites/rspec_2/functional/mock_proxy_spec.rb
198
+ - spec/suites/rspec_2/functional/mock_spec.rb
199
+ - spec/suites/rspec_2/functional/mock_strong_spec.rb
200
+ - spec/suites/rspec_2/functional/received_spec.rb
201
+ - spec/suites/rspec_2/functional/spy_spec.rb
202
+ - spec/suites/rspec_2/functional/stub_bang_spec.rb
203
+ - spec/suites/rspec_2/functional/stub_instance_of_spec.rb
204
+ - spec/suites/rspec_2/functional/stub_instance_of_strong_spec.rb
205
+ - spec/suites/rspec_2/functional/stub_proxy_instance_of_spec.rb
206
+ - spec/suites/rspec_2/functional/stub_proxy_spec.rb
207
+ - spec/suites/rspec_2/functional/stub_spec.rb
208
+ - spec/suites/rspec_2/functional/stub_strong_spec.rb
209
+ - spec/suites/rspec_2/functional/wildcard_matchers_spec.rb
210
+ - spec/suites/rspec_2/helper.rb
211
+ - spec/suites/rspec_2/integration/minitest_4_spec.rb
212
+ - spec/suites/rspec_2/integration/minitest_spec.rb
213
+ - spec/suites/rspec_2/spec_helper.rb
214
+ - spec/suites/rspec_2/support/matchers/wildcard_matcher_matchers.rb
215
+ - spec/suites/rspec_2/support/mixins/double_definition_creator_helpers.rb
216
+ - spec/suites/rspec_2/support/mixins/mock_definition_creator_helpers.rb
217
+ - spec/suites/rspec_2/support/mixins/proxy_definition_creator_helpers.rb
218
+ - spec/suites/rspec_2/support/mixins/stub_creator_helpers.rb
219
+ - spec/suites/rspec_2/support/mixins/stub_definition_creator_helpers.rb
220
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_with_never_called_qualifier.rb
221
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_with_times_called_qualifier.rb
222
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/argument_expectations_without_qualifiers.rb
223
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/dont_allow.rb
224
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_instance_of.rb
225
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_instance_of_strong.rb
226
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_proxy.rb
227
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mock_strong.rb
228
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/mocking.rb
229
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_instance_of.rb
230
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_instance_of_strong.rb
231
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_proxy.rb
232
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stub_strong.rb
233
+ - spec/suites/rspec_2/support/shared_contexts/double_definition_creators/stubbing.rb
234
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/array_flatten_bug.rb
235
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/block_form.rb
236
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/comparing_arity.rb
237
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/object_is_proxy.rb
238
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/sequential_invocations.rb
239
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/setting_implementation.rb
240
+ - spec/suites/rspec_2/support/shared_examples/double_definition_creators/yields.rb
241
+ - spec/suites/rspec_2/support/shared_examples/space.rb
242
+ - spec/suites/rspec_2/support/shared_examples/times_called_expectation.rb
243
+ - spec/suites/rspec_2/unit/core_ext/array_spec.rb
244
+ - spec/suites/rspec_2/unit/core_ext/enumerable_spec.rb
245
+ - spec/suites/rspec_2/unit/core_ext/hash_spec.rb
246
+ - spec/suites/rspec_2/unit/core_ext/range_spec.rb
247
+ - spec/suites/rspec_2/unit/core_ext/regexp_spec.rb
248
+ - spec/suites/rspec_2/unit/deprecations_spec.rb
249
+ - spec/suites/rspec_2/unit/double_definitions/child_double_definition_create_spec.rb
250
+ - spec/suites/rspec_2/unit/double_definitions/double_definition_create_blank_slate_spec.rb
251
+ - spec/suites/rspec_2/unit/double_definitions/double_definition_create_spec.rb
252
+ - spec/suites/rspec_2/unit/dsl/double_creators_spec.rb
253
+ - spec/suites/rspec_2/unit/dsl/space_spec.rb
254
+ - spec/suites/rspec_2/unit/dsl/wildcard_matchers_spec.rb
255
+ - spec/suites/rspec_2/unit/errors/rr_error_spec.rb
256
+ - spec/suites/rspec_2/unit/expectations/any_argument_expectation_spec.rb
257
+ - spec/suites/rspec_2/unit/expectations/anything_argument_equality_expectation_spec.rb
258
+ - spec/suites/rspec_2/unit/expectations/argument_equality_expectation_spec.rb
259
+ - spec/suites/rspec_2/unit/expectations/boolean_argument_equality_expectation_spec.rb
260
+ - spec/suites/rspec_2/unit/expectations/hash_including_argument_equality_expectation_spec.rb
261
+ - spec/suites/rspec_2/unit/expectations/satisfy_argument_equality_expectation_spec.rb
262
+ - spec/suites/rspec_2/unit/expectations/times_called_expectation/any_times_matcher_spec.rb
263
+ - spec/suites/rspec_2/unit/expectations/times_called_expectation/at_least_matcher_spec.rb
264
+ - spec/suites/rspec_2/unit/expectations/times_called_expectation/at_most_matcher_spec.rb
265
+ - spec/suites/rspec_2/unit/expectations/times_called_expectation/integer_matcher_spec.rb
266
+ - spec/suites/rspec_2/unit/expectations/times_called_expectation/proc_matcher_spec.rb
267
+ - spec/suites/rspec_2/unit/expectations/times_called_expectation/range_matcher_spec.rb
268
+ - spec/suites/rspec_2/unit/hash_with_object_id_key_spec.rb
269
+ - spec/suites/rspec_2/unit/injections/double_injection/double_injection_spec.rb
270
+ - spec/suites/rspec_2/unit/injections/double_injection/double_injection_verify_spec.rb
271
+ - spec/suites/rspec_2/unit/integrations/rspec/invocation_matcher_spec.rb
272
+ - spec/suites/rspec_2/unit/integrations/rspec_spec.rb
273
+ - spec/suites/rspec_2/unit/rr_spec.rb
274
+ - spec/suites/rspec_2/unit/space_spec.rb
275
+ - spec/suites/rspec_2/unit/spy_verification_spec.rb
276
+ - spec/suites/rspec_2/unit/times_called_matchers/any_times_matcher_spec.rb
277
+ - spec/suites/rspec_2/unit/times_called_matchers/at_least_matcher_spec.rb
278
+ - spec/suites/rspec_2/unit/times_called_matchers/at_most_matcher_spec.rb
279
+ - spec/suites/rspec_2/unit/times_called_matchers/integer_matcher_spec.rb
280
+ - spec/suites/rspec_2/unit/times_called_matchers/proc_matcher_spec.rb
281
+ - spec/suites/rspec_2/unit/times_called_matchers/range_matcher_spec.rb
282
+ - spec/suites/rspec_2/unit/times_called_matchers/times_called_matcher_spec.rb
283
+ - spec/suites/rspec_2/unit/wildcard_matchers/anything_spec.rb
284
+ - spec/suites/rspec_2/unit/wildcard_matchers/boolean_spec.rb
285
+ - spec/suites/rspec_2/unit/wildcard_matchers/duck_type_spec.rb
286
+ - spec/suites/rspec_2/unit/wildcard_matchers/hash_including_spec.rb
287
+ - spec/suites/rspec_2/unit/wildcard_matchers/is_a_spec.rb
288
+ - spec/suites/rspec_2/unit/wildcard_matchers/numeric_spec.rb
289
+ - spec/suites/rspec_2/unit/wildcard_matchers/satisfy_spec.rb
290
+ - spec/support/adapter.rb
291
+ - spec/support/adapter_tests/base.rb
292
+ - spec/support/adapter_tests/minitest.rb
293
+ - spec/support/adapter_tests/rspec.rb
294
+ - spec/support/adapter_tests/test_unit.rb
295
+ - spec/support/command_runner.rb
296
+ - spec/support/generator.rb
297
+ - spec/support/integration_tests/base.rb
298
+ - spec/support/integration_tests/rails.rb
299
+ - spec/support/integration_tests/rails_minitest.rb
300
+ - spec/support/integration_tests/rails_rspec.rb
301
+ - spec/support/integration_tests/rails_test_unit.rb
302
+ - spec/support/integration_tests/rails_test_unit_like.rb
303
+ - spec/support/integration_tests/ruby.rb
304
+ - spec/support/integration_tests/ruby_minitest.rb
305
+ - spec/support/integration_tests/ruby_rspec.rb
306
+ - spec/support/integration_tests/ruby_test_unit.rb
307
+ - spec/support/matchers/be_a_subset_of_matcher.rb
308
+ - spec/support/project/cucumber.rb
309
+ - spec/support/project/generator.rb
310
+ - spec/support/project/minitest.rb
311
+ - spec/support/project/rails.rb
312
+ - spec/support/project/rails_minitest.rb
313
+ - spec/support/project/rails_rspec.rb
314
+ - spec/support/project/rails_test_unit.rb
315
+ - spec/support/project/rails_test_unit_like.rb
316
+ - spec/support/project/rspec.rb
317
+ - spec/support/project/ruby.rb
318
+ - spec/support/project/ruby_minitest.rb
319
+ - spec/support/project/ruby_rspec.rb
320
+ - spec/support/project/ruby_test_unit.rb
321
+ - spec/support/project/ruby_test_unit_like.rb
322
+ - spec/support/project/test_unit.rb
323
+ - spec/support/project/test_unit_like.rb
324
+ - spec/support/project/tests_runner.rb
325
+ - spec/support/test.sqlite3
326
+ - spec/support/test_case/generator.rb
327
+ - spec/support/test_case/minitest.rb
328
+ - spec/support/test_case/rspec.rb
329
+ - spec/support/test_case/test_unit.rb
330
+ - spec/support/test_file/generator.rb
331
+ - spec/support/test_file/minitest.rb
332
+ - spec/support/test_file/rails_minitest.rb
333
+ - spec/support/test_file/rails_rspec.rb
334
+ - spec/support/test_file/rails_test_unit.rb
335
+ - spec/support/test_file/rspec.rb
336
+ - spec/support/test_file/test_unit.rb
337
+ - spec/support/test_helper/generator.rb
338
+ - spec/support/test_helper/minitest.rb
339
+ - spec/support/test_helper/rails.rb
340
+ - spec/support/test_helper/rails_minitest.rb
341
+ - spec/support/test_helper/rails_rspec.rb
342
+ - spec/support/test_helper/rails_test_unit.rb
343
+ - spec/support/test_helper/rspec.rb
344
+ - spec/support/test_helper/ruby.rb
345
+ - spec/support/test_helper/test_unit.rb
346
+ homepage: https://rr.github.io/rr
125
347
  licenses:
126
348
  - MIT
127
349
  metadata: {}
@@ -131,17 +353,16 @@ require_paths:
131
353
  - lib
132
354
  required_ruby_version: !ruby/object:Gem::Requirement
133
355
  requirements:
134
- - - '>='
356
+ - - ">="
135
357
  - !ruby/object:Gem::Version
136
358
  version: '0'
137
359
  required_rubygems_version: !ruby/object:Gem::Requirement
138
360
  requirements:
139
- - - '>='
361
+ - - ">="
140
362
  - !ruby/object:Gem::Version
141
363
  version: '0'
142
364
  requirements: []
143
- rubyforge_project:
144
- rubygems_version: 2.0.0
365
+ rubygems_version: 3.3.0.dev
145
366
  signing_key:
146
367
  specification_version: 4
147
368
  summary: RR is a test double framework that features a rich selection of double techniques