mocha 1.6.0 → 1.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (310) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +61 -0
  3. data/.rubocop_todo.yml +27 -0
  4. data/CONTRIBUTING.md +4 -9
  5. data/README.md +55 -27
  6. data/RELEASE.md +90 -0
  7. data/Rakefile +44 -38
  8. data/bin/build-matrix +32 -20
  9. data/docs/CNAME +1 -0
  10. data/docs/Mocha.html +254 -0
  11. data/docs/Mocha/API.html +1153 -0
  12. data/docs/Mocha/ClassMethods.html +264 -0
  13. data/docs/Mocha/Configuration.html +1383 -0
  14. data/docs/Mocha/Expectation.html +2654 -0
  15. data/docs/Mocha/ExpectationError.html +152 -0
  16. data/docs/Mocha/ExpectationErrorFactory.html +260 -0
  17. data/docs/Mocha/Hooks.html +370 -0
  18. data/docs/Mocha/Integration.html +125 -0
  19. data/docs/Mocha/Integration/MiniTest.html +123 -0
  20. data/docs/Mocha/Integration/MiniTest/Adapter.html +164 -0
  21. data/docs/Mocha/Integration/TestUnit.html +123 -0
  22. data/docs/Mocha/Integration/TestUnit/Adapter.html +164 -0
  23. data/docs/Mocha/Mock.html +1237 -0
  24. data/docs/Mocha/ObjectMethods.html +765 -0
  25. data/docs/Mocha/ParameterMatchers.html +2961 -0
  26. data/docs/Mocha/ParameterMatchers/AllOf.html +153 -0
  27. data/docs/Mocha/ParameterMatchers/AnyOf.html +153 -0
  28. data/docs/Mocha/ParameterMatchers/AnyParameters.html +153 -0
  29. data/docs/Mocha/ParameterMatchers/Anything.html +153 -0
  30. data/docs/Mocha/ParameterMatchers/Base.html +441 -0
  31. data/docs/Mocha/ParameterMatchers/Equals.html +153 -0
  32. data/docs/Mocha/ParameterMatchers/EquivalentUri.html +153 -0
  33. data/docs/Mocha/ParameterMatchers/HasEntries.html +153 -0
  34. data/docs/Mocha/ParameterMatchers/HasEntry.html +153 -0
  35. data/docs/Mocha/ParameterMatchers/HasKey.html +153 -0
  36. data/docs/Mocha/ParameterMatchers/HasValue.html +153 -0
  37. data/docs/Mocha/ParameterMatchers/Includes.html +153 -0
  38. data/docs/Mocha/ParameterMatchers/InstanceOf.html +153 -0
  39. data/docs/Mocha/ParameterMatchers/IsA.html +153 -0
  40. data/docs/Mocha/ParameterMatchers/KindOf.html +153 -0
  41. data/docs/Mocha/ParameterMatchers/Not.html +153 -0
  42. data/docs/Mocha/ParameterMatchers/Optionally.html +153 -0
  43. data/docs/Mocha/ParameterMatchers/RegexpMatches.html +153 -0
  44. data/docs/Mocha/ParameterMatchers/RespondsWith.html +153 -0
  45. data/docs/Mocha/ParameterMatchers/YamlEquivalent.html +153 -0
  46. data/docs/Mocha/Sequence.html +149 -0
  47. data/docs/Mocha/StateMachine.html +527 -0
  48. data/docs/Mocha/StateMachine/State.html +140 -0
  49. data/docs/Mocha/StateMachine/StatePredicate.html +140 -0
  50. data/docs/Mocha/StubbingError.html +150 -0
  51. data/docs/_index.html +519 -0
  52. data/docs/class_list.html +51 -0
  53. data/docs/css/common.css +1 -0
  54. data/docs/css/full_list.css +58 -0
  55. data/docs/css/style.css +496 -0
  56. data/docs/file.COPYING.html +81 -0
  57. data/docs/file.MIT-LICENSE.html +85 -0
  58. data/docs/file.README.html +448 -0
  59. data/docs/file.RELEASE.html +963 -0
  60. data/docs/file_list.html +71 -0
  61. data/docs/frames.html +17 -0
  62. data/docs/index.html +448 -0
  63. data/docs/js/app.js +303 -0
  64. data/docs/js/full_list.js +216 -0
  65. data/docs/js/jquery.js +4 -0
  66. data/docs/method_list.html +627 -0
  67. data/docs/top-level-namespace.html +118 -0
  68. data/gemfiles/Gemfile.minitest.5.11.3 +7 -0
  69. data/init.rb +1 -3
  70. data/lib/mocha.rb +8 -0
  71. data/lib/mocha/any_instance_method.rb +11 -59
  72. data/lib/mocha/api.rb +70 -70
  73. data/lib/mocha/argument_iterator.rb +4 -8
  74. data/lib/mocha/backtrace_filter.rb +1 -5
  75. data/lib/mocha/cardinality.rb +43 -35
  76. data/lib/mocha/central.rb +7 -15
  77. data/lib/mocha/change_state_side_effect.rb +0 -4
  78. data/lib/mocha/class_methods.rb +13 -19
  79. data/lib/mocha/configuration.rb +296 -74
  80. data/lib/mocha/debug.rb +3 -2
  81. data/lib/mocha/deprecation.rb +4 -11
  82. data/lib/mocha/detection/mini_test.rb +0 -2
  83. data/lib/mocha/detection/test_unit.rb +3 -5
  84. data/lib/mocha/error_with_filtered_backtrace.rb +0 -4
  85. data/lib/mocha/exception_raiser.rb +4 -6
  86. data/lib/mocha/expectation.rb +62 -67
  87. data/lib/mocha/expectation_error.rb +1 -1
  88. data/lib/mocha/expectation_error_factory.rb +0 -1
  89. data/lib/mocha/expectation_list.rb +7 -11
  90. data/lib/mocha/hooks.rb +0 -1
  91. data/lib/mocha/in_state_ordering_constraint.rb +0 -4
  92. data/lib/mocha/inspect.rb +28 -28
  93. data/lib/mocha/instance_method.rb +18 -3
  94. data/lib/mocha/integration.rb +2 -5
  95. data/lib/mocha/integration/mini_test.rb +7 -0
  96. data/lib/mocha/integration/mini_test/adapter.rb +2 -4
  97. data/lib/mocha/integration/mini_test/exception_translation.rb +1 -1
  98. data/lib/mocha/integration/mini_test/nothing.rb +4 -4
  99. data/lib/mocha/integration/mini_test/version_13.rb +3 -1
  100. data/lib/mocha/integration/mini_test/version_140.rb +3 -1
  101. data/lib/mocha/integration/mini_test/version_141.rb +3 -1
  102. data/lib/mocha/integration/mini_test/version_142_to_172.rb +3 -1
  103. data/lib/mocha/integration/mini_test/version_200.rb +3 -1
  104. data/lib/mocha/integration/mini_test/version_201_to_222.rb +3 -1
  105. data/lib/mocha/integration/mini_test/version_2110_to_2111.rb +3 -1
  106. data/lib/mocha/integration/mini_test/version_2112_to_320.rb +3 -1
  107. data/lib/mocha/integration/mini_test/version_230_to_2101.rb +3 -1
  108. data/lib/mocha/integration/monkey_patcher.rb +5 -7
  109. data/lib/mocha/integration/test_unit.rb +7 -0
  110. data/lib/mocha/integration/test_unit/adapter.rb +5 -6
  111. data/lib/mocha/integration/test_unit/gem_version_200.rb +4 -2
  112. data/lib/mocha/integration/test_unit/gem_version_201_to_202.rb +4 -2
  113. data/lib/mocha/integration/test_unit/gem_version_203_to_220.rb +4 -2
  114. data/lib/mocha/integration/test_unit/gem_version_230_to_250.rb +4 -2
  115. data/lib/mocha/integration/test_unit/nothing.rb +4 -4
  116. data/lib/mocha/integration/test_unit/ruby_version_185_and_below.rb +3 -1
  117. data/lib/mocha/integration/test_unit/ruby_version_186_and_above.rb +3 -1
  118. data/lib/mocha/invocation.rb +61 -0
  119. data/lib/mocha/is_a.rb +0 -2
  120. data/lib/mocha/logger.rb +0 -4
  121. data/lib/mocha/macos_version.rb +5 -0
  122. data/lib/mocha/method_matcher.rb +1 -5
  123. data/lib/mocha/minitest.rb +7 -2
  124. data/lib/mocha/mock.rb +57 -47
  125. data/lib/mocha/mockery.rb +38 -90
  126. data/lib/mocha/multiple_yields.rb +0 -5
  127. data/lib/mocha/names.rb +2 -12
  128. data/lib/mocha/no_yields.rb +1 -7
  129. data/lib/mocha/not_initialized_error.rb +0 -2
  130. data/lib/mocha/object_methods.rb +19 -29
  131. data/lib/mocha/parameter_matchers.rb +1 -3
  132. data/lib/mocha/parameter_matchers/all_of.rb +2 -8
  133. data/lib/mocha/parameter_matchers/any_of.rb +2 -8
  134. data/lib/mocha/parameter_matchers/any_parameters.rb +3 -9
  135. data/lib/mocha/parameter_matchers/anything.rb +2 -8
  136. data/lib/mocha/parameter_matchers/base.rb +6 -12
  137. data/lib/mocha/parameter_matchers/equals.rb +0 -6
  138. data/lib/mocha/parameter_matchers/equivalent_uri.rb +3 -12
  139. data/lib/mocha/parameter_matchers/has_entries.rb +2 -6
  140. data/lib/mocha/parameter_matchers/has_entry.rb +8 -11
  141. data/lib/mocha/parameter_matchers/has_key.rb +2 -6
  142. data/lib/mocha/parameter_matchers/has_value.rb +2 -6
  143. data/lib/mocha/parameter_matchers/includes.rb +4 -6
  144. data/lib/mocha/parameter_matchers/instance_methods.rb +18 -0
  145. data/lib/mocha/parameter_matchers/instance_of.rb +0 -6
  146. data/lib/mocha/parameter_matchers/is_a.rb +2 -6
  147. data/lib/mocha/parameter_matchers/kind_of.rb +2 -6
  148. data/lib/mocha/parameter_matchers/not.rb +2 -6
  149. data/lib/mocha/parameter_matchers/optionally.rb +4 -10
  150. data/lib/mocha/parameter_matchers/regexp_matches.rb +0 -6
  151. data/lib/mocha/parameter_matchers/responds_with.rb +3 -8
  152. data/lib/mocha/parameter_matchers/yaml_equivalent.rb +2 -6
  153. data/lib/mocha/parameters_matcher.rb +6 -9
  154. data/lib/mocha/pretty_parameters.rb +0 -4
  155. data/lib/mocha/raised_exception.rb +11 -0
  156. data/lib/mocha/receivers.rb +6 -12
  157. data/lib/mocha/return_values.rb +4 -8
  158. data/lib/mocha/sequence.rb +4 -9
  159. data/lib/mocha/setup.rb +5 -0
  160. data/lib/mocha/single_return_value.rb +2 -5
  161. data/lib/mocha/single_yield.rb +0 -5
  162. data/lib/mocha/singleton_class.rb +9 -0
  163. data/lib/mocha/state_machine.rb +6 -10
  164. data/lib/mocha/stubbed_method.rb +127 -0
  165. data/lib/mocha/stubbing_error.rb +0 -2
  166. data/lib/mocha/test_unit.rb +7 -2
  167. data/lib/mocha/thrower.rb +4 -6
  168. data/lib/mocha/thrown_object.rb +12 -0
  169. data/lib/mocha/version.rb +1 -1
  170. data/lib/mocha/yield_parameters.rb +3 -7
  171. data/mocha.gemspec +33 -60
  172. data/test/acceptance/acceptance_test_helper.rb +6 -4
  173. data/test/acceptance/bug_18914_test.rb +7 -13
  174. data/test/acceptance/bug_21465_test.rb +0 -3
  175. data/test/acceptance/bug_21563_test.rb +0 -3
  176. data/test/acceptance/display_matching_invocations_alongside_expectations_test.rb +69 -0
  177. data/test/acceptance/exception_rescue_test.rb +7 -9
  178. data/test/acceptance/expectations_on_multiple_methods_test.rb +2 -2
  179. data/test/acceptance/expected_invocation_count_test.rb +27 -30
  180. data/test/acceptance/failure_messages_test.rb +3 -6
  181. data/test/acceptance/issue_272_test.rb +1 -3
  182. data/test/acceptance/issue_65_test.rb +15 -14
  183. data/test/acceptance/issue_70_test.rb +0 -2
  184. data/test/acceptance/mocha_example_test.rb +5 -7
  185. data/test/acceptance/mocha_test_result_test.rb +7 -8
  186. data/test/acceptance/mock_test.rb +48 -9
  187. data/test/acceptance/mocked_methods_dispatch_test.rb +0 -3
  188. data/test/acceptance/multiple_expectations_failure_message_test.rb +16 -18
  189. data/test/acceptance/optional_parameters_test.rb +0 -3
  190. data/test/acceptance/parameter_matcher_test.rb +2 -4
  191. data/test/acceptance/partial_mocks_test.rb +4 -7
  192. data/test/acceptance/prepend_test.rb +14 -17
  193. data/test/acceptance/prevent_use_of_mocha_outside_test_test.rb +0 -3
  194. data/test/acceptance/raise_exception_test.rb +2 -5
  195. data/test/acceptance/return_value_test.rb +0 -3
  196. data/test/acceptance/sequence_test.rb +9 -12
  197. data/test/acceptance/states_test.rb +6 -5
  198. data/test/acceptance/stub_any_instance_method_defined_on_superclass_test.rb +5 -5
  199. data/test/acceptance/stub_any_instance_method_test.rb +39 -18
  200. data/test/acceptance/stub_class_method_defined_on_active_record_association_proxy_test.rb +8 -9
  201. data/test/acceptance/stub_class_method_defined_on_class_test.rb +2 -2
  202. data/test/acceptance/stub_class_method_defined_on_module_test.rb +0 -2
  203. data/test/acceptance/stub_class_method_defined_on_superclass_test.rb +7 -5
  204. data/test/acceptance/stub_everything_test.rb +1 -4
  205. data/test/acceptance/stub_instance_method_defined_on_active_record_association_proxy_test.rb +6 -8
  206. data/test/acceptance/stub_instance_method_defined_on_class_and_aliased_test.rb +0 -2
  207. data/test/acceptance/stub_instance_method_defined_on_class_test.rb +0 -2
  208. data/test/acceptance/stub_instance_method_defined_on_kernel_module_test.rb +0 -2
  209. data/test/acceptance/stub_instance_method_defined_on_module_test.rb +0 -2
  210. data/test/acceptance/stub_instance_method_defined_on_object_class_test.rb +2 -2
  211. data/test/acceptance/stub_instance_method_defined_on_singleton_class_test.rb +0 -3
  212. data/test/acceptance/stub_instance_method_defined_on_superclass_test.rb +0 -2
  213. data/test/acceptance/stub_method_defined_on_module_and_aliased_test.rb +0 -1
  214. data/test/acceptance/stub_module_method_test.rb +13 -14
  215. data/test/acceptance/stub_test.rb +1 -4
  216. data/test/acceptance/stubba_example_test.rb +6 -15
  217. data/test/acceptance/stubba_test_result_test.rb +5 -9
  218. data/test/acceptance/stubbing_error_backtrace_test.rb +6 -7
  219. data/test/acceptance/stubbing_frozen_object_test.rb +2 -2
  220. data/test/acceptance/stubbing_method_accepting_block_parameter_test.rb +12 -8
  221. data/test/acceptance/stubbing_method_unnecessarily_test.rb +5 -7
  222. data/test/acceptance/stubbing_nil_test.rb +9 -10
  223. data/test/acceptance/stubbing_non_existent_any_instance_method_test.rb +28 -14
  224. data/test/acceptance/stubbing_non_existent_class_method_test.rb +14 -14
  225. data/test/acceptance/stubbing_non_existent_instance_method_test.rb +12 -14
  226. data/test/acceptance/stubbing_non_public_any_instance_method_test.rb +8 -10
  227. data/test/acceptance/stubbing_non_public_class_method_test.rb +12 -12
  228. data/test/acceptance/stubbing_non_public_instance_method_test.rb +10 -12
  229. data/test/acceptance/stubbing_on_non_mock_object_test.rb +9 -15
  230. data/test/acceptance/stubbing_same_class_method_on_parent_and_child_classes_test.rb +3 -5
  231. data/test/acceptance/throw_test.rb +0 -3
  232. data/test/acceptance/unexpected_invocation_test.rb +2 -4
  233. data/test/acceptance/unstubbing_test.rb +41 -15
  234. data/test/deprecation_disabler.rb +0 -1
  235. data/test/execution_point.rb +2 -4
  236. data/test/integration/mini_test_test.rb +2 -2
  237. data/test/integration/shared_tests.rb +27 -23
  238. data/test/integration/test_unit_test.rb +2 -2
  239. data/test/method_definer.rb +11 -19
  240. data/test/mini_test_result.rb +17 -11
  241. data/test/minitest_result.rb +0 -1
  242. data/test/simple_counter.rb +0 -2
  243. data/test/test_helper.rb +13 -5
  244. data/test/test_runner.rb +4 -4
  245. data/test/test_unit_result.rb +4 -2
  246. data/test/unit/any_instance_method_test.rb +74 -35
  247. data/test/unit/array_inspect_test.rb +2 -4
  248. data/test/unit/backtrace_filter_test.rb +3 -5
  249. data/test/unit/cardinality_test.rb +41 -25
  250. data/test/unit/central_test.rb +26 -28
  251. data/test/unit/change_state_side_effect_test.rb +0 -4
  252. data/test/unit/class_methods_test.rb +10 -12
  253. data/test/unit/configuration_test.rb +13 -14
  254. data/test/unit/date_time_inspect_test.rb +1 -3
  255. data/test/unit/exception_raiser_test.rb +10 -7
  256. data/test/unit/expectation_list_test.rb +13 -13
  257. data/test/unit/expectation_test.rb +110 -130
  258. data/test/unit/hash_inspect_test.rb +3 -5
  259. data/test/unit/hooks_test.rb +9 -4
  260. data/test/unit/in_state_ordering_constraint_test.rb +0 -4
  261. data/test/unit/instance_method_test.rb +282 -0
  262. data/test/unit/method_matcher_test.rb +1 -3
  263. data/test/unit/mock_test.rb +47 -25
  264. data/test/unit/mockery_test.rb +32 -33
  265. data/test/unit/module_methods_test.rb +2 -5
  266. data/test/unit/multiple_yields_test.rb +0 -2
  267. data/test/unit/no_yields_test.rb +0 -2
  268. data/test/unit/object_inspect_test.rb +26 -5
  269. data/test/unit/object_methods_test.rb +9 -10
  270. data/test/unit/parameter_matchers/all_of_test.rb +0 -2
  271. data/test/unit/parameter_matchers/any_of_test.rb +0 -2
  272. data/test/unit/parameter_matchers/anything_test.rb +2 -4
  273. data/test/unit/parameter_matchers/equals_test.rb +1 -3
  274. data/test/unit/parameter_matchers/equivalent_uri_test.rb +0 -10
  275. data/test/unit/parameter_matchers/has_entries_test.rb +3 -3
  276. data/test/unit/parameter_matchers/has_entry_test.rb +14 -15
  277. data/test/unit/parameter_matchers/has_key_test.rb +1 -2
  278. data/test/unit/parameter_matchers/has_value_test.rb +1 -3
  279. data/test/unit/parameter_matchers/includes_test.rb +9 -10
  280. data/test/unit/parameter_matchers/instance_of_test.rb +1 -3
  281. data/test/unit/parameter_matchers/is_a_test.rb +1 -3
  282. data/test/unit/parameter_matchers/kind_of_test.rb +1 -3
  283. data/test/unit/parameter_matchers/not_test.rb +0 -2
  284. data/test/unit/parameter_matchers/regexp_matches_test.rb +1 -2
  285. data/test/unit/parameter_matchers/responds_with_test.rb +10 -4
  286. data/test/unit/parameter_matchers/stub_matcher.rb +0 -4
  287. data/test/unit/parameter_matchers/yaml_equivalent_test.rb +1 -3
  288. data/test/unit/parameters_matcher_test.rb +2 -4
  289. data/test/unit/receivers_test.rb +8 -6
  290. data/test/unit/return_values_test.rb +28 -25
  291. data/test/unit/sequence_test.rb +1 -5
  292. data/test/unit/single_return_value_test.rb +6 -3
  293. data/test/unit/single_yield_test.rb +0 -2
  294. data/test/unit/state_machine_test.rb +1 -3
  295. data/test/unit/string_inspect_test.rb +2 -4
  296. data/test/unit/thrower_test.rb +7 -4
  297. data/test/unit/yield_parameters_test.rb +0 -2
  298. data/yard-templates/default/layout/html/google_analytics.erb +6 -9
  299. data/yard-templates/default/layout/html/setup.rb +2 -3
  300. metadata +81 -49
  301. data/lib/mocha/class_method.rb +0 -119
  302. data/lib/mocha/mini_test.rb +0 -5
  303. data/lib/mocha/module_method.rb +0 -8
  304. data/lib/mocha/module_methods.rb +0 -14
  305. data/lib/mocha/parameter_matchers/object.rb +0 -17
  306. data/lib/mocha/standalone.rb +0 -4
  307. data/lib/mocha/unexpected_invocation.rb +0 -26
  308. data/lib/mocha_standalone.rb +0 -4
  309. data/test/acceptance/mock_with_initializer_block_test.rb +0 -58
  310. data/test/unit/class_method_test.rb +0 -229
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c4c3e82b675148ae87d3cb16bd97816bc04b04b3
4
- data.tar.gz: 888491a9247d93053283fbfa0b7a59d073beb760
2
+ SHA256:
3
+ metadata.gz: 37552b852159a54683d4acb532daa97dd5b4db6ba031399e07056d438b034717
4
+ data.tar.gz: 86be70d9b97b96f30bda6122a056f79a6a93e9a5e7e657fda8df3ce60f5e55ac
5
5
  SHA512:
6
- metadata.gz: dc6cbdc1710ee63e7d627fa2b73e62fc6a175d743a9d57c81d314a7c86d167ba4b719d7f5345438eb3b10d159b8b6a9e2a4126592919a7d057bf38e5118b9a62
7
- data.tar.gz: 3745c02ad5e63009a05279b610a96fcfecb79b42b789c617d609ef38aaa30e54a3941e040c650a26e0179353dcd7ef6b48dc5401a1ea69a77a31585a0eac0c40
6
+ metadata.gz: 7d0dded9eac7033c2fdefeeca1045bc6616c2c3a6f4376b83adc43fdae7af5b2771b8a395570e6417cc3ae431de01fca6253a477be29aac86d2607cc37395744
7
+ data.tar.gz: 44dd01735f61991c56031d85dd06c2f561ae518050daa17865714c25cdab70cfcc45a95b14220c8cb53656d2cc67c5b04660cbb7d47091bbd8b53a00e05c5093
@@ -0,0 +1,61 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ AllCops:
4
+ TargetRubyVersion: 2.2 # closest to required_ruby_version of '>= 1.8.6'
5
+
6
+ # Even the reference in the documentation suggests that you should prefer
7
+ # `alias_method` vs `alias`, so I don't understand why that isn't the default.
8
+ Style/Alias:
9
+ EnforcedStyle: prefer_alias_method
10
+
11
+ Style/Documentation:
12
+ Enabled: false
13
+
14
+ # Enumerable#each_with_object only available since Ruby v1.9
15
+ Style/EachWithObject:
16
+ Enabled: false
17
+
18
+ # Kernel#__dir__ has only been available since Ruby v2.0
19
+ Style/ExpandPathArguments:
20
+ Enabled: false
21
+
22
+ # Kernel#format has only supported named references since Ruby v1.9
23
+ Style/FormatStringToken:
24
+ EnforcedStyle: unannotated
25
+
26
+ # ruby19 style has only been supported since Ruby v1.9
27
+ Style/HashSyntax:
28
+ EnforcedStyle: hash_rockets
29
+
30
+ # I'm not keen on this cop, because it's easy to miss the conditional
31
+ # I think the results are particularly unhelpful when Metrics/LineLength is big
32
+ Style/IfUnlessModifier:
33
+ Enabled: false
34
+
35
+ # Lambda literal syntax has only been supported since Ruby v2.0
36
+ Style/Lambda:
37
+ EnforcedStyle: lambda
38
+
39
+ # Symbol array literal syntax has only been supported since Ruby v2.0
40
+ Style/SymbolArray:
41
+ Enabled: false
42
+
43
+ # I'm not keen on this cop, because it's easy to miss the while/until
44
+ Style/WhileUntilModifier:
45
+ Enabled: false
46
+
47
+ # This recently introduced cop seems to have stirred up some controversy
48
+ Style/AccessModifierDeclarations:
49
+ Enabled: false
50
+
51
+ # Enabling this cop results in an "Infinite loop detected" exception
52
+ Layout/AccessModifierIndentation:
53
+ Enabled: false
54
+
55
+ # Allow long comment lines, e.g. YARD documentation
56
+ Metrics/LineLength:
57
+ IgnoredPatterns: ['\A\s*#']
58
+
59
+ # It's not possible to set TargetRubyVersion to Ruby < v2.2
60
+ Gemspec/RequiredRubyVersion:
61
+ Enabled: false
@@ -0,0 +1,27 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2019-11-16 18:15:36 +0000 using RuboCop version 0.58.2.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 57
10
+ Metrics/AbcSize:
11
+ Max: 26
12
+
13
+ # Offense count: 23
14
+ # Configuration parameters: CountComments.
15
+ Metrics/ClassLength:
16
+ Max: 366
17
+
18
+ # Offense count: 172
19
+ # Configuration parameters: CountComments.
20
+ Metrics/MethodLength:
21
+ Max: 31
22
+
23
+ # Offense count: 545
24
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
25
+ # URISchemes: http, https
26
+ Metrics/LineLength:
27
+ Max: 180
@@ -1,12 +1,7 @@
1
1
  * Pull requests are welcomed.
2
2
  * Fork the repository.
3
3
  * Make your changes in a branch.
4
- * Add tests for new behaviour. Modify/remove existing tests for changes to existing behaviour.
5
- * Run `bin/build-matrix` from the root directory and ensure all the tests pass.
6
- * This script depends on `rbenv` being installed.
7
- * You must have all the ruby versions listed in `.travis.yml` under the `rvm` key installed (currently 1.8.7, 1.9.3 & 2.0.0).
8
- * I use `rbenv-aliases` to alias the patch versions.
9
- * Note that the build matrix takes quite a while to run.
10
- * Send us a pull request from your fork/branch.
11
- * Wait for your pull request to build on [Travis CI](https://travis-ci.org/freerange/mocha).
12
- * I will not accept pull requests with failing tests.
4
+ * Add/modify/remove tests as appropriate.
5
+ * Open a pull request based on a branch on your fork.
6
+ * Wait for your pull request build to pass on [Travis CI](https://travis-ci.org/freerange/mocha/pull_requests).
7
+ * Pull requests with failing tests will not be accepted.
data/README.md CHANGED
@@ -3,11 +3,14 @@
3
3
 
4
4
  ### Description
5
5
 
6
- * A Ruby library for mocking and stubbing.
6
+ * A Ruby library for [mocking](http://xunitpatterns.com/Mock%20Object.html) and [stubbing](http://xunitpatterns.com/Test%20Stub.html) - but deliberately not (yet) [faking](http://xunitpatterns.com/Fake%20Object.html) or [spying](http://xunitpatterns.com/Test%20Spy.html).
7
7
  * A unified, simple and readable syntax for both full & partial mocking.
8
8
  * Built-in support for MiniTest and Test::Unit.
9
9
  * Supported by many other test frameworks.
10
10
 
11
+ ### Intended Usage
12
+ Mocha is intended to be used in unit tests for the [Mock Object](http://xunitpatterns.com/Mock%20Object.html) or [Test Stub](http://xunitpatterns.com/Test%20Stub.html) types of [Test Double](http://xunitpatterns.com/Test%20Double.html), not the [Fake Object](http://xunitpatterns.com/Fake%20Object.html) or [Test Spy](http://xunitpatterns.com/Test%20Spy.html) types. Although it would be possible to extend Mocha to allow the implementation of fakes and spies, we have chosen to keep it focused on mocks and stubs.
13
+
11
14
  ### Installation
12
15
 
13
16
  #### Gem
@@ -92,14 +95,6 @@ end
92
95
 
93
96
  Note: There is no need to use a require statement to setup Mocha; RSpec does this itself.
94
97
 
95
- #### Rails Plugin
96
-
97
- Install the Rails plugin...
98
-
99
- $ rails plugin install git://github.com/freerange/mocha.git
100
-
101
- Note: As of version 0.9.8, the Mocha plugin is not automatically setup at plugin load time. Instead it must be manually setup e.g. at the bottom of your `test_helper.rb`.
102
-
103
98
  ##### MiniTest
104
99
 
105
100
  ```ruby
@@ -107,15 +102,34 @@ Note: As of version 0.9.8, the Mocha plugin is not automatically setup at plugin
107
102
  require 'mocha/minitest'
108
103
  ```
109
104
 
105
+ ##### Cucumber
106
+
107
+ ```ruby
108
+ # In e.g. features/support/mocha.rb
109
+ require 'mocha/api'
110
+
111
+ World(Mocha::API)
112
+
113
+ Around do |scenario, block|
114
+ begin
115
+ mocha_setup
116
+ block.call
117
+ mocha_verify
118
+ ensure
119
+ mocha_teardown
120
+ end
121
+ end
122
+ ```
123
+
110
124
  #### Known Issues
111
125
 
126
+ * In Mocha v1.10.0 an undocumented feature of `API#mock`, `API#stub` & `API#stub_everything` was changed. Previously when these methods were passed a single symbol, they returned a mock object that responded to the method identified by the symbol. Now Passing a single symbol is equivalent to passing a single string, i.e. it now defines the "name" of the mock object.
112
127
  * In Mocha v1.2.0 there is a scenario where stubbing a class method originally defined in a module hangs the Ruby interpreter due to [a bug in Ruby v2.3.1](https://bugs.ruby-lang.org/issues/12832). See #272. This was fixed in Mocha v1.2.1.
113
128
  * Since v1.1.0 Mocha has used prepended modules internally for stubbing methods. There is [an obscure Ruby bug](https://bugs.ruby-lang.org/issues/12876) in many (but not all) versions of Ruby between v2.0 & v2.3 which under certain circumstances may cause your Ruby interpreter to hang. See the Ruby bug report for more details. The bug has been fixed in Ruby v2.3.3 & v2.4.0.
114
129
  * Stubbing an aliased class method, where the original method is defined in a module that's used to `extend` the class doesn't work in Ruby 1.8.x. See stub_method_defined_on_module_and_aliased_test.rb for an example of this behaviour.
115
130
  * 0.13.x versions cause a harmless, but annoying, deprecation warning when used with Rails 3.2.0-3.2.12, 3.1.0-3.1.10 & 3.0.0-3.0.19.
116
131
  * 0.11.x versions don't work with Rails 3.2.13 (`TypeError: superclass mismatch for class ExpectationError`). See #115.
117
132
  * Versions 0.10.2, 0.10.3 & 0.11.0 of the Mocha gem were broken. Please do not use these versions.
118
- * Versions 0.9.6 & 0.9.7 of the Mocha Rails plugin were broken. Please do not use these versions.
119
133
 
120
134
  ### Usage
121
135
 
@@ -256,7 +270,15 @@ end
256
270
 
257
271
  ### Thread safety
258
272
 
259
- Mocha is currently *not* thread-safe. There are two main reasons for this: (a) in multi-threaded code Mocha exceptions may be raised in a thread other than the one which is running the test and thus a Mocha exception may not be correctly intercepted by Mocha exception handling code; and (b) partial mocking changes the state of objects in the `ObjectSpace` which is shared across all threads in the Ruby process and this access to what is effectively global state is not synchronized.
273
+ Mocha currently *does not* attempt to be thread-safe.
274
+
275
+ #### Can I test multi-threaded code with Mocha?
276
+
277
+ The short answer is no. In multi-threaded code Mocha exceptions may be raised in a thread other than the one which is running the test and thus a Mocha exception may not be correctly intercepted by Mocha exception handling code.
278
+
279
+ #### Can I run my tests across multiple threads?
280
+
281
+ Maybe, but probably not. Partial mocking changes the state of objects in the `ObjectSpace` which is shared across all threads in the Ruby process and this access to what is effectively global state is not synchronized. So, for example, if two tests are running concurrently and one uses `#any_instance` to modify a class, both tests will see those changes immediately.
260
282
 
261
283
  ### Expectation matching / invocation order
262
284
 
@@ -264,7 +286,7 @@ Stubs and expectations are basically the same thing. A stub is just an expectati
264
286
 
265
287
  When a method is invoked on a mock object, the mock object searches through its expectations from newest to oldest to find one that matches the invocation. After the invocation, the matching expectation might stop matching further invocations.
266
288
 
267
- See the [documentation](http://gofreerange.com/mocha/docs/Mocha/Mock.html) for `Mocha::Mock` for further details.
289
+ See the [documentation](https://mocha.jamesmead.org/Mocha/Mock.html) for `Mocha::Mock` for further details.
268
290
 
269
291
  ### Configuration
270
292
 
@@ -275,11 +297,16 @@ If you want, Mocha can generate a warning or raise an exception when:
275
297
  * stubbing a non-existent method
276
298
  * stubbing a non-public method
277
299
 
278
- See the [documentation](http://gofreerange.com/mocha/docs/Mocha/Configuration.html) for `Mocha::Configuration` for further details.
300
+ See the [documentation](https://mocha.jamesmead.org/Mocha/Configuration.html) for `Mocha::Configuration` for further details.
301
+
302
+ ##### MOCHA_OPTIONS
303
+ `MOCHA_OPTIONS` is an environment variable whose value can be set to a comma-separated list, so that we can specify multiple options e.g. `MOCHA_OPTIONS=debug,use_test_unit_gem`.
304
+ Only the following values are currently recognized and have an effect:
305
+ * `debug`: Enables a debug mode which will output backtraces for each deprecation warning. This is useful for finding where in the test suite the deprecated calls are.
279
306
 
280
307
  ### Useful Links
281
308
 
282
- * [Official Documentation](http://gofreerange.com/mocha/docs/)
309
+ * [Official Documentation](https://mocha.jamesmead.org)
283
310
  * [Source Code](http://github.com/freerange/mocha)
284
311
  * [Mailing List](http://groups.google.com/group/mocha-developer)
285
312
  * [James Mead's Blog](http://jamesmead.org/blog/)
@@ -293,37 +320,38 @@ See the [documentation](http://gofreerange.com/mocha/docs/Mocha/Configuration.ht
293
320
 
294
321
  See this [list of contributors](https://github.com/freerange/mocha/graphs/contributors).
295
322
 
296
- ### Translations
297
-
298
- * [Serbo-Croatian](http://science.webhostinggeeks.com/mocha) by [WHG Team](http://webhostinggeeks.com/). (may be out-of-date)
299
-
300
323
  ### Releasing a new version
301
324
 
302
325
  * Update the RELEASE.md file with a summary of changes
303
326
  * Bump the version in `lib/mocha/version.rb`
304
- * Commit & push to Github
327
+ * Commit & push to GitHub
305
328
  * Check Travis CI build is passing - https://travis-ci.org/freerange/mocha
306
329
 
330
+ * Sign in to Google Analytics - https://analytics.google.com/analytics/web/
331
+ * Find the web property ID for floehopper (625523) > Mocha Documentation (UA-625523-7)
332
+ * Generate documentation:
333
+
334
+ ```bash
335
+ $ MOCHA_GENERATE_DOCS=true bundle install
336
+
337
+ $ MOCHA_GENERATE_DOCS=true GOOGLE_ANALYTICS_WEB_PROPERTY_ID=UA-625523-7 rake generate_docs
338
+ ```
339
+ * Commit documentation & push to GitHub
307
340
  * Sign in to rubygems.org and find API key - https://rubygems.org/profile/edit
308
341
 
309
342
  ```bash
310
343
  $ curl -u james@floehopper.org https://rubygems.org/api/v1/api_key.yaml > ~/.gem/credentials; chmod 0600 ~/.gem/credentials`
311
344
  ```
312
345
 
313
- * Sign in to Google Analytics - https://analytics.google.com/analytics/web/
314
- * Find the web property ID for Go Free Range Ltd > Mocha Documentation (UA-45002715-2)
346
+ * Release gem to Rubygems:
315
347
 
316
348
  ```bash
317
- $ MOCHA_GENERATE_DOCS=true bundle install
318
-
319
- $ MOCHA_GENERATE_DOCS=true GOOGLE_ANALYTICS_WEB_PROPERTY_ID=UA-45002715-2 rake release
349
+ $ rake release
350
+ [runs tests]
320
351
  mocha 1.2.0 built to pkg/mocha-1.2.0.gem.
321
352
  Tagged v1.2.0.
322
353
  Pushed git commits and tags.
323
354
  Pushed mocha 1.2.0 to rubygems.org.
324
- [runs tests]
325
- [generates docs]
326
- [deploys docs]
327
355
  ```
328
356
 
329
357
  ### History
data/RELEASE.md CHANGED
@@ -1,5 +1,95 @@
1
1
  # Release Notes
2
2
 
3
+ ## 1.10.1
4
+
5
+ * Ensure ObjectMethods & ClassMethods included when API extended (43778756)
6
+ * Fix regression in `any_instance` stubbing of methods on object which has an implementation of `#respond_to?` that depends on the object's internal state - thanks to @rafaelfranca for reporting & @nitishr for fixing (#432, #434, 469d4b17)
7
+
8
+ ## 1.10.0
9
+
10
+ * Improve deprecation warning when requiring 'mocha/setup' (388f44d7)
11
+ * Add documentation for Cucumber integration (13ab797b)
12
+ * Add documentation about an undocumented feature of `API#mock`, `API#stub` & `API#stub_everything` being changed (7ed2e4e7, d30c1717)
13
+
14
+ ## 1.10.0.beta.1
15
+
16
+ * Hide `ClassMethods#method_visibility` & `#method_exists?` methods to avoid clash with Rails (#428)
17
+
18
+ ## 1.10.0.alpha
19
+
20
+ ### External changes
21
+
22
+ * Remove dependency on metaclass gem (#49, #365)
23
+ * Accept symbol (as well as a string) as mock/stub name - thanks to @nitishr (#347, #353, #377)
24
+ * More realistic examples in documentation for `Expectation#yields` and `#multiple_yields` - thanks to @nitishr (#352, #383)
25
+ * Improve documentation for `Mock#responds_like` & `#responds_like_instance_of` - thanks to @nitishr (#337, #384)
26
+ * Make `Expectation#yields` & `Expectation#multiple_yields` fail when the caller of the stubbed method does not provide a block. This is a change to an undocumented aspect of the public API's behaviour. If this causes your tests to fail, then fix it by removing the unnecessary call to `Expectation#yields` or `Expectation#multiple_yields` - thanks to @nitishr (#382)
27
+ * Document `MOCHA_OPTIONS` in README - thanks to @nitishr (#311, #386)
28
+ * Add documentation to explain how Mocha is intended to be used - thanks to @nitishr (#330, #385)
29
+ * Deprecation warning if integration using 'mocha/test_unit' or 'mocha/minitest' fails - thanks to @nitishr (#229, #389, c6032d0b)
30
+ * Require at least one specified sequence for `Expectation#in_sequence` - thanks to @nitishr (#79, #396, 9020248a)
31
+ * Make signatures of `Mock#unstub` & `ObjectMethods#unstub` consistent - thanks to @nitishr (#397, f04d437)
32
+ * Deprecate requiring 'mocha/setup' (36adf880)
33
+ * Optionally display matching invocations alongside expectations - thanks to @nitishr (#178, #394, 00f0540, #410)
34
+ * Put deprecations into effect (#400, #418):
35
+ * Remove deprecated 'mocha_standalone.rb' & 'mocha/standalone.rb'
36
+ * Fail fast if no test library loaded
37
+ * Removed optional block for `Mocha::API#mock`, `#stub` & `#stub_everything`
38
+ * Remove deprecated `ParameterMatchers#has_equivalent_query_string` method
39
+ * Remove deprecated 'mocha/mini_test.rb'
40
+ * Fix typo in docs for `Mocha::Configuration.prevent` (266ce71c)
41
+ * New-style configuration (see documentation for `Mocha::Configuration`) (#407, #421)
42
+ * Deprecate support for Ruby versions earlier than v1.9 (#325, c5f8496d)
43
+ * Deprecate support for versions of test-unit & minitest which need monkey-patching (a34e1a88)
44
+ * Deprecate old-style Rails plugin (#403, 2df77134)
45
+ * Documentation fixes & improvements which also fix YARD warnings (472d5416, a2c0d64a)
46
+
47
+ ### Internal changes
48
+
49
+ * Pin minitest to v5.11.3 for Ruby v1.8.7 to fix build; minitest no longer supports Ruby v1.8.7 (4a0a580)
50
+ * Upgrade JRuby to v9.2.8.0 in Travis CI builds (aa29b3f)
51
+ * Only run rubocop for MRI Ruby versions & non-integration test builds (8f1c6af)
52
+ * Reduce duplication in any instance method class - thanks to @nitishr (#378)
53
+ * Simplify `AnyInstanceMethod`, `ClassMethod`, `InstanceMethod`, `ModuleMethod` class hierarchy - thanks to @nitishr (#381)
54
+ * Simplify `ClassMethods#method_exists?` & `ObjectMethods#method_exists?` making them consistent - thanks to @nitishr (#270, #362, #370)
55
+ * Don't override definition of `singleton_class` in `ClassMethods` - thanks to @nitishr (#391, #392)
56
+ * Do not include 'method_definer' methods into all objects (#268, #402)
57
+ * Distinguish different `ObjectMethods` modules (#268, #404)
58
+ * Pass invocation to expectation list methods - thanks to @nitishr (#408, #409, #411)
59
+ * Consistently use `assert_raises` - thanks to @nitishr (#405, #412, a66b7bed)
60
+ * Update Ruby & JRuby versions in Travis CI config (18cb1a93, eb061c53)
61
+ * Rubocop improvements (aa16ea67...6f4db70b, 2a1240e6...e95716ae)
62
+ * Fix inconsistency in CardinalityTest (aa10e0a8)
63
+ * Fix test failures on Mac OSX Catalina - thanks to @nitishr (#413, #417, #419, 8a0f2535)
64
+ * Remove default argument in `Expectation#invoke` - thanks to @nitishr (#414, #420)
65
+
66
+ ## 1.9.0
67
+
68
+ * Add TruffleRuby to Travis CI build matrix - thanks to @deepj (#354)
69
+ * Explicitly set Travis CI OS to Ubuntu Trusty 14.04 (ded1fa45)
70
+ * Expand explanation of thread-safety concerns - thanks to @techbelly (#357)
71
+ * Refactor class method and any instance method - thanks to @chrisroos (#358)
72
+ * Rely on default bundler version in Travis CI builds (3352e9c5)
73
+ * Fix local build-matrix script (11abe231)
74
+ * No need to install latest bundler in build-matrix script (8247a894)
75
+
76
+ ## 1.8.0
77
+
78
+ * Constrain rubocop version to avoid breaking Travis CI builds (05e507f5)
79
+ * Avoid calling Kernel#format from ObjectMethods#mocha_inspect - thanks to @hoffmanilya (#345)
80
+ * Fix build matrix script (#346)
81
+ * Avoid deprecation warning in gemspec (4976e0bc)
82
+ * Removed link to documentation translation (ef428ea2)
83
+ * Don't use the new bundler v2 in builds (683ded9b)
84
+ * Moved documentation from https://gofreerange.com/mocha/docs to https://mocha.jamesmead.org/ [683ded...a17fde](https://github.com/freerange/mocha/compare/683ded...a17fde)
85
+
86
+ ## 1.7.0
87
+
88
+ * Update Ruby & JRuby versions in Travis CI config (9bf55631 & 3883af7e)
89
+ * Simplify gemspec (63744f86)
90
+ * Add rubocop and fix most cop violations (#341)
91
+ * Use Kernel#warn for deprecations - thanks to @etiennebarrie (#333, 196970a)
92
+
3
93
  ## 1.6.0
4
94
 
5
95
  * Fix subtle bug in setting correct visibility of stubbed module methods on `Kernel` or `Object` - thanks to @chrisroos (#295)
data/Rakefile CHANGED
@@ -1,17 +1,15 @@
1
- require "bundler"
1
+ require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
- require "bundler/setup"
4
-
5
- MOCHA_DOCS_HOST = ENV['MOCHA_DOCS_HOST'] || 'gofreerange.com'
3
+ require 'bundler/setup'
6
4
 
7
5
  require 'rake/testtask'
8
6
 
9
- desc "Run all tests"
7
+ desc 'Run all tests'
10
8
  task 'default' => ['test', 'test:performance']
11
9
 
12
- desc "Run tests"
10
+ desc 'Run tests'
13
11
  task 'test' do
14
- if test_library = ENV['MOCHA_RUN_INTEGRATION_TESTS']
12
+ if (test_library = ENV['MOCHA_RUN_INTEGRATION_TESTS'])
15
13
  Rake::Task["test:integration:#{test_library}"].invoke
16
14
  else
17
15
  Rake::Task['test:units'].invoke
@@ -19,14 +17,13 @@ task 'test' do
19
17
  end
20
18
  end
21
19
 
22
- namespace 'test' do
23
-
20
+ namespace 'test' do # rubocop:disable Metrics/BlockLength
24
21
  unit_tests = FileList['test/unit/**/*_test.rb']
25
22
  all_acceptance_tests = FileList['test/acceptance/*_test.rb']
26
23
  ruby186_incompatible_acceptance_tests = FileList['test/acceptance/stub_class_method_defined_on_*_test.rb'] + FileList['test/acceptance/stub_instance_method_defined_on_*_test.rb']
27
24
  ruby186_compatible_acceptance_tests = all_acceptance_tests - ruby186_incompatible_acceptance_tests
28
25
 
29
- desc "Run unit tests"
26
+ desc 'Run unit tests'
30
27
  Rake::TestTask.new('units') do |t|
31
28
  t.libs << 'test'
32
29
  t.test_files = unit_tests
@@ -34,20 +31,20 @@ namespace 'test' do
34
31
  t.warning = true
35
32
  end
36
33
 
37
- desc "Run acceptance tests"
34
+ desc 'Run acceptance tests'
38
35
  Rake::TestTask.new('acceptance') do |t|
39
36
  t.libs << 'test'
40
- if defined?(RUBY_VERSION) && (RUBY_VERSION >= "1.8.7")
41
- t.test_files = all_acceptance_tests
42
- else
43
- t.test_files = ruby186_compatible_acceptance_tests
44
- end
37
+ t.test_files = if defined?(RUBY_VERSION) && (RUBY_VERSION >= '1.8.7')
38
+ all_acceptance_tests
39
+ else
40
+ ruby186_compatible_acceptance_tests
41
+ end
45
42
  t.verbose = true
46
43
  t.warning = true
47
44
  end
48
45
 
49
46
  namespace 'integration' do
50
- desc "Run MiniTest integration tests (intended to be run in its own process)"
47
+ desc 'Run MiniTest integration tests (intended to be run in its own process)'
51
48
  Rake::TestTask.new('minitest') do |t|
52
49
  t.libs << 'test'
53
50
  t.test_files = FileList['test/integration/mini_test_test.rb']
@@ -55,7 +52,7 @@ namespace 'test' do
55
52
  t.warning = true
56
53
  end
57
54
 
58
- desc "Run Test::Unit integration tests (intended to be run in its own process)"
55
+ desc 'Run Test::Unit integration tests (intended to be run in its own process)'
59
56
  Rake::TestTask.new('test-unit') do |t|
60
57
  t.libs << 'test'
61
58
  t.test_files = FileList['test/integration/test_unit_test.rb']
@@ -74,7 +71,7 @@ namespace 'test' do
74
71
  # t.rcov_opts << '--xref'
75
72
  # end
76
73
 
77
- desc "Run performance tests"
74
+ desc 'Run performance tests'
78
75
  task 'performance' do
79
76
  require File.join(File.dirname(__FILE__), 'test', 'acceptance', 'stubba_example_test')
80
77
  require File.join(File.dirname(__FILE__), 'test', 'acceptance', 'mocha_example_test')
@@ -84,9 +81,18 @@ namespace 'test' do
84
81
  puts "#{test_case}: #{benchmark_test_case(test_case, iterations)} seconds."
85
82
  end
86
83
  end
84
+ end
87
85
 
86
+ begin
87
+ require 'rubocop/rake_task'
88
+ if RUBY_VERSION >= '2.2.0' && (defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby') && ENV['MOCHA_RUN_INTEGRATION_TESTS'].nil?
89
+ RuboCop::RakeTask.new
90
+ task 'test' => 'rubocop'
91
+ end
92
+ rescue LoadError # rubocop:disable Lint/HandleExceptions
88
93
  end
89
94
 
95
+ # rubocop:disable Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
90
96
  def benchmark_test_case(klass, iterations)
91
97
  require 'benchmark'
92
98
  require 'mocha/detection/mini_test'
@@ -94,33 +100,34 @@ def benchmark_test_case(klass, iterations)
94
100
  if defined?(MiniTest)
95
101
  minitest_version = Gem::Version.new(Mocha::Detection::MiniTest.version)
96
102
  if Gem::Requirement.new('>= 5.0.0').satisfied_by?(minitest_version)
97
- result = Benchmark.realtime { iterations.times { |i| klass.run(MiniTest::CompositeReporter.new) } }
103
+ result = Benchmark.realtime { iterations.times { |_i| klass.run(MiniTest::CompositeReporter.new) } }
98
104
  MiniTest::Runnable.runnables.delete(klass)
99
105
  result
100
106
  else
101
107
  MiniTest::Unit.output = StringIO.new
102
- Benchmark.realtime { iterations.times { |i| MiniTest::Unit.new.run([klass]) } }
108
+ Benchmark.realtime { iterations.times { |_i| MiniTest::Unit.new.run([klass]) } }
103
109
  end
104
110
  else
105
111
  load 'test/unit/ui/console/testrunner.rb' unless defined?(Test::Unit::UI::Console::TestRunner)
106
- unless $silent_option
112
+ unless @silent_option
107
113
  begin
108
114
  load 'test/unit/ui/console/outputlevel.rb' unless defined?(Test::Unit::UI::Console::OutputLevel::SILENT)
109
- $silent_option = { :output_level => Test::Unit::UI::Console::OutputLevel::SILENT }
115
+ @silent_option = { :output_level => Test::Unit::UI::Console::OutputLevel::SILENT }
110
116
  rescue LoadError
111
- $silent_option = Test::Unit::UI::SILENT
117
+ @silent_option = Test::Unit::UI::SILENT
112
118
  end
113
119
  end
114
- Benchmark.realtime { iterations.times { Test::Unit::UI::Console::TestRunner.run(klass, $silent_option) } }
120
+ Benchmark.realtime { iterations.times { Test::Unit::UI::Console::TestRunner.run(klass, @silent_option) } }
115
121
  end
116
122
  end
123
+ # rubocop:enable Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
117
124
 
118
- if ENV["MOCHA_GENERATE_DOCS"]
125
+ if ENV['MOCHA_GENERATE_DOCS']
119
126
  require 'yard'
120
127
 
121
128
  desc 'Remove generated documentation'
122
129
  task 'clobber_yardoc' do
123
- `rm -rf ./doc`
130
+ `rm -rf ./docs`
124
131
  end
125
132
 
126
133
  task 'docs_environment' do
@@ -131,19 +138,18 @@ if ENV["MOCHA_GENERATE_DOCS"]
131
138
 
132
139
  desc 'Generate documentation'
133
140
  YARD::Rake::YardocTask.new('yardoc' => 'docs_environment') do |task|
134
- task.options = ["--title", "Mocha #{Mocha::VERSION}"]
141
+ task.options = [
142
+ '--title', "Mocha #{Mocha::VERSION}",
143
+ '--output-dir', 'docs'
144
+ ]
135
145
  end
136
146
 
137
- desc "Generate documentation"
138
- task 'generate_docs' => ['clobber_yardoc', 'yardoc']
139
-
140
- desc "Publish docs to #{MOCHA_DOCS_HOST}/docs/mocha"
141
- task 'publish_docs' => 'generate_docs' do
142
- path = "/home/freerange/docs/mocha"
143
- system %{ssh #{MOCHA_DOCS_HOST} "sudo rm -fr #{path} && mkdir -p #{path}" && scp -r doc/* #{MOCHA_DOCS_HOST}:#{path}}
147
+ task 'checkout_docs_cname' do
148
+ `git checkout docs/CNAME`
144
149
  end
145
- end
146
150
 
147
- task 'release' => 'default' do
148
- Rake::Task['publish_docs'].invoke
151
+ desc 'Generate documentation'
152
+ task 'generate_docs' => %w[clobber_yardoc yardoc checkout_docs_cname]
149
153
  end
154
+
155
+ task 'release' => 'default'