newbamboo-evented-rspec 1.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (323) hide show
  1. data/.autotest +4 -0
  2. data/History.txt +1263 -0
  3. data/License.txt +22 -0
  4. data/Manifest.txt +327 -0
  5. data/README.txt +57 -0
  6. data/Rakefile +104 -0
  7. data/TODO.txt +18 -0
  8. data/bin/autospec +4 -0
  9. data/bin/spec +4 -0
  10. data/examples/failing/README.txt +7 -0
  11. data/examples/failing/diffing_spec.rb +36 -0
  12. data/examples/failing/failing_autogenerated_docstrings_example.rb +19 -0
  13. data/examples/failing/failure_in_after.rb +10 -0
  14. data/examples/failing/failure_in_before.rb +10 -0
  15. data/examples/failing/mocking_example.rb +40 -0
  16. data/examples/failing/mocking_with_flexmock.rb +26 -0
  17. data/examples/failing/mocking_with_mocha.rb +25 -0
  18. data/examples/failing/mocking_with_rr.rb +27 -0
  19. data/examples/failing/partial_mock_example.rb +20 -0
  20. data/examples/failing/predicate_example.rb +34 -0
  21. data/examples/failing/raising_example.rb +47 -0
  22. data/examples/failing/spec_helper.rb +3 -0
  23. data/examples/failing/syntax_error_example.rb +7 -0
  24. data/examples/failing/team_spec.rb +44 -0
  25. data/examples/failing/timeout_behaviour.rb +7 -0
  26. data/examples/passing/autogenerated_docstrings_example.rb +25 -0
  27. data/examples/passing/before_and_after_example.rb +40 -0
  28. data/examples/passing/behave_as_example.rb +45 -0
  29. data/examples/passing/custom_expectation_matchers.rb +54 -0
  30. data/examples/passing/custom_formatter.rb +12 -0
  31. data/examples/passing/dynamic_spec.rb +9 -0
  32. data/examples/passing/file_accessor.rb +19 -0
  33. data/examples/passing/file_accessor_spec.rb +38 -0
  34. data/examples/passing/greeter_spec.rb +31 -0
  35. data/examples/passing/helper_method_example.rb +14 -0
  36. data/examples/passing/io_processor.rb +8 -0
  37. data/examples/passing/io_processor_spec.rb +21 -0
  38. data/examples/passing/legacy_spec.rb +11 -0
  39. data/examples/passing/mocking_example.rb +27 -0
  40. data/examples/passing/multi_threaded_example_group_runner.rb +26 -0
  41. data/examples/passing/nested_classes_example.rb +36 -0
  42. data/examples/passing/partial_mock_example.rb +29 -0
  43. data/examples/passing/pending_example.rb +20 -0
  44. data/examples/passing/predicate_example.rb +27 -0
  45. data/examples/passing/priority.txt +1 -0
  46. data/examples/passing/shared_example_group_example.rb +81 -0
  47. data/examples/passing/shared_stack_examples.rb +36 -0
  48. data/examples/passing/simple_matcher_example.rb +31 -0
  49. data/examples/passing/spec_helper.rb +3 -0
  50. data/examples/passing/stack.rb +36 -0
  51. data/examples/passing/stack_spec.rb +64 -0
  52. data/examples/passing/stack_spec_with_nested_example_groups.rb +67 -0
  53. data/examples/passing/stubbing_example.rb +69 -0
  54. data/examples/passing/yielding_example.rb +33 -0
  55. data/examples/ruby1.9.compatibility/access_to_constants_spec.rb +86 -0
  56. data/features/before_and_after_blocks/before_and_after_blocks.feature +168 -0
  57. data/features/example_groups/autogenerated_docstrings.feature +45 -0
  58. data/features/example_groups/example_group_with_should_methods.feature +17 -0
  59. data/features/example_groups/nested_groups.feature +17 -0
  60. data/features/example_groups/output.feature +20 -0
  61. data/features/interop/examples_and_tests_together.feature +31 -0
  62. data/features/interop/test_but_not_test_unit.feature +14 -0
  63. data/features/interop/test_case_with_should_methods.feature +17 -0
  64. data/features/mock_framework_integration/use_flexmock.feature +27 -0
  65. data/features/step_definitions/running_rspec.rb +54 -0
  66. data/features/support/env.rb +26 -0
  67. data/features/support/helpers/cmdline.rb +9 -0
  68. data/features/support/matchers/smart_match.rb +37 -0
  69. data/init.rb +9 -0
  70. data/lib/adapters/mock_frameworks/flexmock.rb +24 -0
  71. data/lib/adapters/mock_frameworks/mocha.rb +20 -0
  72. data/lib/adapters/mock_frameworks/rr.rb +22 -0
  73. data/lib/adapters/mock_frameworks/rspec.rb +20 -0
  74. data/lib/autotest/discover.rb +3 -0
  75. data/lib/autotest/rspec.rb +47 -0
  76. data/lib/spec.rb +7 -0
  77. data/lib/spec/dsl.rb +1 -0
  78. data/lib/spec/dsl/main.rb +87 -0
  79. data/lib/spec/example.rb +187 -0
  80. data/lib/spec/example/before_and_after_hooks.rb +99 -0
  81. data/lib/spec/example/errors.rb +30 -0
  82. data/lib/spec/example/example_group.rb +26 -0
  83. data/lib/spec/example/example_group_factory.rb +98 -0
  84. data/lib/spec/example/example_group_methods.rb +376 -0
  85. data/lib/spec/example/example_matcher.rb +44 -0
  86. data/lib/spec/example/example_methods.rb +137 -0
  87. data/lib/spec/example/module_reopening_fix.rb +21 -0
  88. data/lib/spec/example/pending.rb +18 -0
  89. data/lib/spec/example/shared_example_group.rb +59 -0
  90. data/lib/spec/expectations.rb +60 -0
  91. data/lib/spec/expectations/differs/default.rb +66 -0
  92. data/lib/spec/expectations/errors.rb +12 -0
  93. data/lib/spec/expectations/extensions.rb +2 -0
  94. data/lib/spec/expectations/extensions/object.rb +63 -0
  95. data/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
  96. data/lib/spec/expectations/handler.rb +32 -0
  97. data/lib/spec/interop/test.rb +12 -0
  98. data/lib/spec/interop/test/unit/autorunner.rb +6 -0
  99. data/lib/spec/interop/test/unit/testcase.rb +73 -0
  100. data/lib/spec/interop/test/unit/testresult.rb +6 -0
  101. data/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  102. data/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  103. data/lib/spec/matchers.rb +141 -0
  104. data/lib/spec/matchers/be.rb +208 -0
  105. data/lib/spec/matchers/be_close.rb +21 -0
  106. data/lib/spec/matchers/change.rb +148 -0
  107. data/lib/spec/matchers/eql.rb +25 -0
  108. data/lib/spec/matchers/equal.rb +25 -0
  109. data/lib/spec/matchers/errors.rb +5 -0
  110. data/lib/spec/matchers/exist.rb +16 -0
  111. data/lib/spec/matchers/generated_descriptions.rb +48 -0
  112. data/lib/spec/matchers/has.rb +15 -0
  113. data/lib/spec/matchers/have.rb +150 -0
  114. data/lib/spec/matchers/include.rb +80 -0
  115. data/lib/spec/matchers/match.rb +22 -0
  116. data/lib/spec/matchers/match_array.rb +79 -0
  117. data/lib/spec/matchers/method_missing.rb +9 -0
  118. data/lib/spec/matchers/operator_matcher.rb +70 -0
  119. data/lib/spec/matchers/raise_error.rb +128 -0
  120. data/lib/spec/matchers/respond_to.rb +71 -0
  121. data/lib/spec/matchers/satisfy.rb +47 -0
  122. data/lib/spec/matchers/simple_matcher.rb +132 -0
  123. data/lib/spec/matchers/throw_symbol.rb +106 -0
  124. data/lib/spec/matchers/wrap_expectation.rb +55 -0
  125. data/lib/spec/mocks.rb +200 -0
  126. data/lib/spec/mocks/argument_expectation.rb +49 -0
  127. data/lib/spec/mocks/argument_matchers.rb +237 -0
  128. data/lib/spec/mocks/error_generator.rb +82 -0
  129. data/lib/spec/mocks/errors.rb +10 -0
  130. data/lib/spec/mocks/extensions.rb +1 -0
  131. data/lib/spec/mocks/extensions/object.rb +3 -0
  132. data/lib/spec/mocks/framework.rb +15 -0
  133. data/lib/spec/mocks/message_expectation.rb +331 -0
  134. data/lib/spec/mocks/methods.rb +51 -0
  135. data/lib/spec/mocks/mock.rb +55 -0
  136. data/lib/spec/mocks/order_group.rb +29 -0
  137. data/lib/spec/mocks/proxy.rb +230 -0
  138. data/lib/spec/mocks/space.rb +28 -0
  139. data/lib/spec/mocks/spec_methods.rb +55 -0
  140. data/lib/spec/rake/spectask.rb +225 -0
  141. data/lib/spec/rake/verify_rcov.rb +52 -0
  142. data/lib/spec/ruby.rb +9 -0
  143. data/lib/spec/runner.rb +88 -0
  144. data/lib/spec/runner/backtrace_tweaker.rb +58 -0
  145. data/lib/spec/runner/class_and_arguments_parser.rb +14 -0
  146. data/lib/spec/runner/command_line.rb +36 -0
  147. data/lib/spec/runner/configuration.rb +166 -0
  148. data/lib/spec/runner/drb_command_line.rb +20 -0
  149. data/lib/spec/runner/example_group_runner.rb +70 -0
  150. data/lib/spec/runner/formatter/base_formatter.rb +79 -0
  151. data/lib/spec/runner/formatter/base_text_formatter.rb +127 -0
  152. data/lib/spec/runner/formatter/failing_example_groups_formatter.rb +27 -0
  153. data/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  154. data/lib/spec/runner/formatter/html_formatter.rb +340 -0
  155. data/lib/spec/runner/formatter/nested_text_formatter.rb +65 -0
  156. data/lib/spec/runner/formatter/profile_formatter.rb +51 -0
  157. data/lib/spec/runner/formatter/progress_bar_formatter.rb +34 -0
  158. data/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  159. data/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
  160. data/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  161. data/lib/spec/runner/heckle_runner.rb +74 -0
  162. data/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  163. data/lib/spec/runner/option_parser.rb +204 -0
  164. data/lib/spec/runner/options.rb +320 -0
  165. data/lib/spec/runner/reporter.rb +167 -0
  166. data/lib/spec/runner/spec_parser.rb +73 -0
  167. data/lib/spec/version.rb +15 -0
  168. data/resources/rake/examples.rake +7 -0
  169. data/resources/rake/examples_with_rcov.rake +9 -0
  170. data/resources/rake/failing_examples_with_html.rake +9 -0
  171. data/resources/rake/verify_rcov.rake +7 -0
  172. data/resources/spec/example_group_with_should_methods.rb +12 -0
  173. data/resources/spec/simple_spec.rb +8 -0
  174. data/resources/test/spec_and_test_together.rb +57 -0
  175. data/resources/test/spec_including_test_but_not_unit.rb +11 -0
  176. data/resources/test/test_case_with_should_methods.rb +30 -0
  177. data/spec/README.jruby +15 -0
  178. data/spec/autotest/autotest_helper.rb +6 -0
  179. data/spec/autotest/autotest_matchers.rb +47 -0
  180. data/spec/autotest/discover_spec.rb +8 -0
  181. data/spec/autotest/failed_results_re_spec.rb +24 -0
  182. data/spec/autotest/rspec_spec.rb +114 -0
  183. data/spec/rspec_suite.rb +6 -0
  184. data/spec/ruby_forker.rb +13 -0
  185. data/spec/spec.opts +6 -0
  186. data/spec/spec/dsl/main_spec.rb +88 -0
  187. data/spec/spec/example/example_group_class_definition_spec.rb +49 -0
  188. data/spec/spec/example/example_group_factory_spec.rb +224 -0
  189. data/spec/spec/example/example_group_methods_spec.rb +653 -0
  190. data/spec/spec/example/example_group_spec.rb +661 -0
  191. data/spec/spec/example/example_matcher_spec.rb +79 -0
  192. data/spec/spec/example/example_methods_spec.rb +204 -0
  193. data/spec/spec/example/helper_method_spec.rb +24 -0
  194. data/spec/spec/example/nested_example_group_spec.rb +71 -0
  195. data/spec/spec/example/pending_module_spec.rb +139 -0
  196. data/spec/spec/example/predicate_matcher_spec.rb +21 -0
  197. data/spec/spec/example/shared_example_group_spec.rb +257 -0
  198. data/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  199. data/spec/spec/expectations/differs/default_spec.rb +127 -0
  200. data/spec/spec/expectations/extensions/object_spec.rb +45 -0
  201. data/spec/spec/expectations/fail_with_spec.rb +71 -0
  202. data/spec/spec/expectations/wrap_expectation_spec.rb +30 -0
  203. data/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  204. data/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  205. data/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  206. data/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +13 -0
  207. data/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  208. data/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  209. data/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  210. data/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  211. data/spec/spec/interop/test/unit/spec_spec.rb +48 -0
  212. data/spec/spec/interop/test/unit/test_unit_spec_helper.rb +18 -0
  213. data/spec/spec/interop/test/unit/testcase_spec.rb +49 -0
  214. data/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  215. data/spec/spec/matchers/be_close_spec.rb +41 -0
  216. data/spec/spec/matchers/be_spec.rb +303 -0
  217. data/spec/spec/matchers/change_spec.rb +329 -0
  218. data/spec/spec/matchers/description_generation_spec.rb +172 -0
  219. data/spec/spec/matchers/eql_spec.rb +29 -0
  220. data/spec/spec/matchers/equal_spec.rb +29 -0
  221. data/spec/spec/matchers/exist_spec.rb +57 -0
  222. data/spec/spec/matchers/handler_spec.rb +111 -0
  223. data/spec/spec/matchers/has_spec.rb +63 -0
  224. data/spec/spec/matchers/have_spec.rb +399 -0
  225. data/spec/spec/matchers/include_spec.rb +88 -0
  226. data/spec/spec/matchers/match_array_spec.rb +83 -0
  227. data/spec/spec/matchers/match_spec.rb +37 -0
  228. data/spec/spec/matchers/matcher_methods_spec.rb +66 -0
  229. data/spec/spec/matchers/operator_matcher_spec.rb +191 -0
  230. data/spec/spec/matchers/raise_error_spec.rb +333 -0
  231. data/spec/spec/matchers/respond_to_spec.rb +116 -0
  232. data/spec/spec/matchers/satisfy_spec.rb +36 -0
  233. data/spec/spec/matchers/simple_matcher_spec.rb +93 -0
  234. data/spec/spec/matchers/throw_symbol_spec.rb +96 -0
  235. data/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
  236. data/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  237. data/spec/spec/mocks/at_least_spec.rb +97 -0
  238. data/spec/spec/mocks/at_most_spec.rb +93 -0
  239. data/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  240. data/spec/spec/mocks/bug_report_10263_spec.rb +24 -0
  241. data/spec/spec/mocks/bug_report_11545_spec.rb +32 -0
  242. data/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  243. data/spec/spec/mocks/bug_report_496.rb +19 -0
  244. data/spec/spec/mocks/bug_report_600_spec.rb +22 -0
  245. data/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  246. data/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  247. data/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  248. data/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  249. data/spec/spec/mocks/failing_argument_matchers_spec.rb +95 -0
  250. data/spec/spec/mocks/hash_including_matcher_spec.rb +90 -0
  251. data/spec/spec/mocks/hash_not_including_matcher_spec.rb +67 -0
  252. data/spec/spec/mocks/mock_ordering_spec.rb +84 -0
  253. data/spec/spec/mocks/mock_space_spec.rb +54 -0
  254. data/spec/spec/mocks/mock_spec.rb +579 -0
  255. data/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  256. data/spec/spec/mocks/nil_expectation_warning_spec.rb +53 -0
  257. data/spec/spec/mocks/null_object_mock_spec.rb +54 -0
  258. data/spec/spec/mocks/once_counts_spec.rb +53 -0
  259. data/spec/spec/mocks/options_hash_spec.rb +35 -0
  260. data/spec/spec/mocks/partial_mock_spec.rb +149 -0
  261. data/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  262. data/spec/spec/mocks/passing_argument_matchers_spec.rb +145 -0
  263. data/spec/spec/mocks/precise_counts_spec.rb +52 -0
  264. data/spec/spec/mocks/record_messages_spec.rb +26 -0
  265. data/spec/spec/mocks/stub_spec.rb +194 -0
  266. data/spec/spec/mocks/stubbed_message_expectations_spec.rb +14 -0
  267. data/spec/spec/mocks/twice_counts_spec.rb +67 -0
  268. data/spec/spec/package/bin_spec_spec.rb +22 -0
  269. data/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  270. data/spec/spec/runner/command_line_spec.rb +141 -0
  271. data/spec/spec/runner/configuration_spec.rb +301 -0
  272. data/spec/spec/runner/drb_command_line_spec.rb +97 -0
  273. data/spec/spec/runner/empty_file.txt +0 -0
  274. data/spec/spec/runner/example_group_runner_spec.rb +33 -0
  275. data/spec/spec/runner/examples.txt +2 -0
  276. data/spec/spec/runner/failed.txt +3 -0
  277. data/spec/spec/runner/formatter/base_formatter_spec.rb +23 -0
  278. data/spec/spec/runner/formatter/base_text_formatter_spec.rb +23 -0
  279. data/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
  280. data/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  281. data/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
  282. data/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +387 -0
  283. data/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
  284. data/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
  285. data/spec/spec/runner/formatter/html_formatted-1.8.6.html +379 -0
  286. data/spec/spec/runner/formatter/html_formatted-1.8.7.html +379 -0
  287. data/spec/spec/runner/formatter/html_formatted-1.9.1.html +379 -0
  288. data/spec/spec/runner/formatter/html_formatter_spec.rb +62 -0
  289. data/spec/spec/runner/formatter/nested_text_formatter_spec.rb +318 -0
  290. data/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
  291. data/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +145 -0
  292. data/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  293. data/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +104 -0
  294. data/spec/spec/runner/formatter/specdoc_formatter_spec.rb +159 -0
  295. data/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +365 -0
  296. data/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +373 -0
  297. data/spec/spec/runner/formatter/text_mate_formatted-1.8.7.html +373 -0
  298. data/spec/spec/runner/formatter/text_mate_formatted-1.9.1.html +373 -0
  299. data/spec/spec/runner/heckle_runner_spec.rb +78 -0
  300. data/spec/spec/runner/heckler_spec.rb +20 -0
  301. data/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
  302. data/spec/spec/runner/option_parser_spec.rb +396 -0
  303. data/spec/spec/runner/options_spec.rb +469 -0
  304. data/spec/spec/runner/output_one_time_fixture.rb +7 -0
  305. data/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
  306. data/spec/spec/runner/output_one_time_spec.rb +16 -0
  307. data/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +62 -0
  308. data/spec/spec/runner/reporter_spec.rb +238 -0
  309. data/spec/spec/runner/resources/a_bar.rb +0 -0
  310. data/spec/spec/runner/resources/a_foo.rb +0 -0
  311. data/spec/spec/runner/resources/a_spec.rb +1 -0
  312. data/spec/spec/runner/resources/custom_example_group_runner.rb +14 -0
  313. data/spec/spec/runner/resources/utf8_encoded.rb +7 -0
  314. data/spec/spec/runner/spec.opts +2 -0
  315. data/spec/spec/runner/spec_drb.opts +1 -0
  316. data/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
  317. data/spec/spec/runner/spec_parser_spec.rb +91 -0
  318. data/spec/spec/runner/spec_spaced.opts +2 -0
  319. data/spec/spec/runner_spec.rb +11 -0
  320. data/spec/spec/spec_classes.rb +133 -0
  321. data/spec/spec/spec_spec.rb +21 -0
  322. data/spec/spec_helper.rb +107 -0
  323. metadata +388 -0
data/.autotest ADDED
@@ -0,0 +1,4 @@
1
+ Autotest.add_hook :initialize do |at|
2
+ at.add_exception("spec/interop/test/unit/resources")
3
+ at.add_exception("spec/spec/runner/drb_command_line_spec.rb")
4
+ end
data/History.txt ADDED
@@ -0,0 +1,1263 @@
1
+ == Maintenance
2
+
3
+ * enhancements
4
+
5
+ * allow registering example groups with a path-like key (Pat Maddox)
6
+
7
+ * bug fixes
8
+
9
+ * support delegating operator matchers to subject with should_not
10
+
11
+ === Version 1.1.12 / 2009-01-11
12
+
13
+ WARNING: there was a stub/mock bug in 1.1.11 that allowed a structure that was
14
+ not intended:
15
+
16
+ obj.stub!(:msg)
17
+ obj.msg
18
+ obj.should_receive(:msg)
19
+
20
+ That would pass in 1.1.11, but should not have been allowed to, since the
21
+ message is received before the expectation is set. This was reported (#637)
22
+ and fixed for release 1.1.12, but may cause unexpected failures if you had
23
+ examples set up as above.
24
+
25
+ WARNING: mock.should_receive(:msg).with(an_instance_of(klass)) now correctly uses instance_of? instead of kind_of?. This may break some existing code examples, but the fix is to just use kind_of instead of an_instance_of
26
+
27
+ * 3 deprecations
28
+
29
+ * deprecated ExampleMethods#implementation_backtrace - use ExampleMethods#backtrace instead
30
+ * deprecated ExampleGroupMethods#example_group_backtrace - use ExampleGroupMethods#backtrace instead
31
+ * deprecated Spec::Example::BehaviourRunner class (likely that nobody is using this)
32
+
33
+ * 6 major enhancements
34
+
35
+ * it { should matcher } - support for implicit receiver of #should (Joe Ferris of thoughtbot)
36
+ * subject { ... } - works in conjunction with implicit receiver of #should
37
+ * wrap_expectation (for wrapping multiple expectations and/or t/u assertions)
38
+ * added array.should =~ [1,2,3] # passes if array contains exactly the same elements in any order (Jeff Dean and Pat Maddox)
39
+ * hash_including mock argument matcher can now accept just keys, key/value pairs, or both (David Krmpotic)
40
+ * added hash_not_including mock argument matcher (David Krmpotic). Closes #634.
41
+
42
+ * 9 minor enhancements
43
+
44
+ * should throw_symbol accepts an optional argument: should throw_symbol(:sym, arg)
45
+ * fixed --line for jruby (Zach Moazeni)
46
+ * assorted small changes to support Ruby 1.9 (got a way to go)
47
+ * removed all instances of class << self - I do know who I am
48
+ * SpecParser can't handle backtrace paths with colons (John-Mason P. Shackelford). Closes #505.
49
+ * html formatter (and subsequently the textmate formatter) header fills in completely when running a single example
50
+ * config.include now accepts an array of types (config.include(Helpers, :type => [:view, :controller]))
51
+ * added be_a and be_an expectation matchers
52
+ * added instance_of and kind_of mock argument matchers
53
+
54
+ * 9 bug fixes
55
+
56
+ * fixed bug where {:a => 1, :b => 2}.should include(:a, :b) failed (Yossef Mendelssohn)
57
+ * only try to load Test::Unit if Test::Unit is defined (not just Test)
58
+ * Allow stubs on parent and child classes simultaneously (Jim Lindley). Fixes #600.
59
+ * BaseTextFormatter will now create the directory in a WHERE string (Adam Anderson). Fixes #616.
60
+ * Removed incorrect -S flag on autospec commands. Added explicit spec command for ruby to run, guarantee running rspec (raggi). Closes #507.
61
+ * Check whether test/unit has really been loaded before calling a method it defines (Brian Donovan). Closes #503.
62
+ * Fix spec_path for shared groups (Zach Dennis). Closes #615.
63
+ * stubbed message expectation not verified if it has been called *before* the expectation (Matthias Hennemeyer). Closes #637.
64
+ * stubs calculate return value by executing block passed to #and_return (hint from Aisha Fenton). Closes #642.
65
+
66
+ === Version 1.1.11 / 2008-10-24
67
+
68
+ * 1 major enhancement
69
+
70
+ * eliminate ALL gem dependencies (as they were causing trouble for people on different platforms/environments)
71
+
72
+ === Version 1.1.10 / 2008-10-24
73
+
74
+ * 1 minor enhancement
75
+
76
+ * hash.should include(:key => 'value') #when you don't care about the whole hash
77
+
78
+ * 2 bug fixes
79
+
80
+ * fix --help output (had inaccurate info about 'nested' formatter)
81
+ * eliminate spicycode-rcov dev dependency for rubygems < 1.3
82
+
83
+ === Version 1.1.9 / 2008-10-20
84
+
85
+ WARNING: This release removes implicit inclusion of modules in example groups.
86
+ This means that if you have 'describe MyModule do', MyModule will not be
87
+ included in the group.
88
+
89
+ * 2 major enhancements
90
+
91
+ * Add extend to configuration (thanks to advice from Chad Fowler)
92
+ * Modules are no longer implicitly included in example groups
93
+
94
+ * 4 minor enhancements
95
+
96
+ * mingw indicates windows too (thanks to Luis Lavena for the tip)
97
+ * improved output for partial mock expecation failures
98
+ * it_should_behave_like now accepts n names of shared groups
99
+ * eliminated redundant inclusion/extension of ExampleGroupMethods
100
+
101
+ * 6 bug fixes
102
+
103
+ * spec command with no arguments prints help
104
+ * fixed typo in help. Fixes #73.
105
+ * fixed bug where should_receive..and_yield after similar stub added the args_to_yield to the stub's original args_to_yield (Pat Maddox)
106
+ * fixed bug where rspec-autotest (autospec) was loading non-spec files in spec directory. Fixes #559.
107
+ * fixed bug where should_not_receive was reporting twice
108
+ * fixed bug where rspec tries to run examples just because it is required (even if there are no examples loaded). Fixes #575.
109
+
110
+ === Version 1.1.8 / 2008-10-03
111
+
112
+ * 2 bug fixes
113
+
114
+ * restore colorized output in linux and windows w/ autotest (Tim Pope). Fixes #413.
115
+ * autospec no longer hangs on windows. Fixes #554.
116
+
117
+ === Version 1.1.7 / 2008-10-02
118
+
119
+ * no changes since 1.1.6, but releasing rspec-1.1.7 to align versions with rspec-rails-1.1.7
120
+
121
+ === Version 1.1.6 / 2008-10-02
122
+
123
+ * 2 bug fixes
124
+
125
+ * fixed bug where negative message expectations following stubs resulted in false (negative) positives (Mathias Meyer). Closes #548.
126
+ * fixed bug where Not Yet Implemented examples report incorrect caller (Scott Taylor). Closes #547.
127
+
128
+ * 1 minor enhancement
129
+
130
+ * removed deprecated mock argument constraint symbols
131
+
132
+ === Version 1.1.5 / 2008-09-28
133
+
134
+ IMPORTANT: use the new 'autospec' command instead of 'autotest'. We changed
135
+ the way autotest discovers rspec so the autotest executable won't
136
+ automatically load rspec anymore. This allows rspec to live side by side other
137
+ spec frameworks without always co-opting autotest through autotest's discovery
138
+ mechanism.
139
+
140
+ ALSO IMPORTANT: $rspec_options is gone. If you were using this for anything
141
+ (like your own runners), use Spec::Runner.options instead.
142
+
143
+ ADDITIONALLY IMPORTANT: If you have any custom formatters, you'll need to
144
+ modify #example_pending to accept three arguments instead of just two. See the
145
+ rdoc for Spec::Runner::Formatter::BaseFormatter#example_pending for more
146
+ information.
147
+
148
+ * Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
149
+ * Added additional characters to be escaped in step strings (patch from Jake Cahoon). Closes #417.
150
+ * Disable color codes on STDOUT when STDOUT.tty? is false (patch from Tim Pope). Closes #413.
151
+ * mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser). Closes #230.
152
+ * a step definition with no block is treated as pending
153
+ * make sure consolidate_failures only grabs _spec files. Closes #369
154
+ * Simplifying ExampleGroupMethods#registration_backtrace. (From Wilson Bilkovich - http://metaclass.org/2008/6/7/calling-in-the-dark)
155
+ * Use 127.0.0.1 instead of localhost for drb (thanks Ola Bini)
156
+ * html story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #300
157
+ * plain text story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #439
158
+ * quiet deprecation warning on inflector - patch from RSL. Closes #430
159
+ * added autospec executable
160
+ * added configurable messages to simple_matcher
161
+ * should and should_not return true on success
162
+ * use hoe for build/release
163
+ * bye, bye translator
164
+ * autotest/rspec uses ruby command instead of spec command (no need for spec command unless loading directories)
165
+ * Avoid 'invalid option -O' in autotest (patch from Jonathan del Strother). Closes #486.
166
+ * Fix: Unimplemented step with new line throws error (patch from Ben Mabey). Closes #494.
167
+ * Only use color codes on tty; override for autospec (patch from Tim Pope). Closes #413.
168
+ * Warn when setting mock expectations on nil (patch from Ben Mabey). Closes #521.
169
+ * Support argument constraints as values in the hash_including contstraint. Thanks to Pirkka Hartikainen for failing code examples and the fix. Buttons up #501.
170
+ * mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser)
171
+ * Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
172
+ * Add 2nd arg to respond_to? to align w/ core Ruby rdoc: http://www.ruby-doc.org/core/classes/Object.html#M000604
173
+ * quiet backtrace tweaker filters individual lines out of multiline (ala Rails) error messages (Pat Maddox)
174
+ * added ability to stub multiple methods in one stub! call (Pat Maddox)
175
+ * story progress bar formatter and more colourful summaries from the plain text story formatter (Joseph Wilk)
176
+ * Avoid ruby invocation errors when autotesting (Jonathan del Strother)
177
+ * added mock('foo').as_null_object
178
+ * add file and line number to pending_example for formatters (Scott Taylor)
179
+ * return last stubbed value for mock expectation with no explicit return (Pat Maddox)
180
+ * Fixed bug when should_receive(:foo).any_number_of_times is called after similar stub (Pat Maddox)
181
+ * Warning messages now issued when expectations are set on nil (Ben Mabey)
182
+
183
+ === Version 1.1.4
184
+
185
+ Maintenance release.
186
+
187
+ Note: we've removed the metaclass method from Object. There were some
188
+ generated specs that used it, and they will now break. Just replace the
189
+ metaclass call with (class << self; self; end) and all will be well.
190
+
191
+ * added hash_including mock argument matcher. Closes #332 (patch from Rick DeNatale)
192
+ * pending steps print out yellow in stories (patch from Kyle Hargraves)
193
+ * Deprecation warnings for specs that assume auto-inclusion of modules. Closes #326 (patch from Scott Taylor)
194
+ * mock.should_not_receive(:anything) fails fast (once again)
195
+ * Patch from Antti Tarvainen to stop files from being loaded repeatedly when running heckle. Closes #333.
196
+ * Fixed bug in which session object in example was not the same instance used in the controller. Closes #331.
197
+ * Applied patch from Antti Tarvainen to fix bug where heckle runs rspec runs heckle runs rspec etc. Closes #280.
198
+ * Applied patch from Zach Dennis to merge :steps functionality to :steps_for. Closes #324.
199
+ * Applied patch from Ryan Davis to add eval of block passed to raise_error matcher. Closes #321.
200
+ * alias :context :describe in example_group_methods. Closes #312.
201
+ * Applied patch from Ben Mabey to make the Story runner exit with a non-0 exit code on failing stories. Closes #228.
202
+ * Applied patch from Coda Hale to get the :red hook called in autotest. Closes #279.
203
+ * Applied patch from Patrick Ritchie to support --drb in spec.opts. Closes #274, #293.
204
+ * Moved metaclass method from Object to an internal module which gets included where it is needed.
205
+ * Applied patch from Dayo Esho: and_yield clobbers return value from block. Closes #217.
206
+ * Applied patch from Bob Cotton: ExampleGroupFactory.default resets previously registered types. Closes #222.
207
+ * Applied patch from Mike Williams to support the lib directory in rails apps with the Textmate Alternate File command. Closes #276.
208
+ * ExampleGroupMethods#xspecify aliases #xit
209
+ * A SharedExampleGroup can be created within another ExampleGroup.
210
+ * Applied patch from Bob Cotton: Nested ExampleGroups do not have a spec_path. Closes #224.
211
+ * Add before_suite and after_suite callbacks to ExampleGroupMethods and Options. Closes #210.
212
+ * The after(:suite) callback lambda is passed a boolean representing whether the suite passed or failed
213
+ * Added NestedTextFormatter. Closes #366.
214
+ * decoupled mock framework from global extensions used by rspec - supports use of flexmock or mocha w/ rails
215
+ * Applied patch from Roman Chernyatchik to allow the user to pass in the ruby version into spectask. Closes #325, #370
216
+
217
+ === Version 1.1.3
218
+
219
+ Maintenance release.
220
+ Notice to autotest users: you must also upgrade to ZenTest-3.9.0.
221
+
222
+ * Tightened up exceptions list in autotest/rails_spec. Closes #264.
223
+ * Applied patch from Ryan Davis for ZenTest-3.9.0 compatibility
224
+ * Applied patch from Kero to add step_upcoming to story listeners. Closes #253.
225
+ * Fixed bug where the wrong named error was not always caught by "should raise_error"
226
+ * Applied patch from Luis Lavena: No coloured output on Windows due missing RUBYOPT. Closes #244.
227
+ * Applied patch from Craig Demyanovich to add support for "should_not render_template" to rspec_on_rails. Closes #241.
228
+ * Added --pattern (-p for short) option to control what files get loaded. Defaults to '**/*_spec.rb'
229
+ * Exit with non-0 exit code if examples *or tests* (in test/unit interop mode) fail. Closes #203.
230
+ * Moved at_exit hook to a method in Spec::Runner which only runs if specs get loaded. Closes #242.
231
+ * Applied patch from kakutani ensuring that base_view_path gets cleared after each view example. Closes #235.
232
+ * More tweaks to regexp step names
233
+ * Fixed focused specs in nested ExampleGroups. Closes #225.
234
+
235
+ === Version 1.1.2
236
+
237
+ Minor bug fixes/enhancements.
238
+ Notice to autotest users: you must also upgrade to ZenTest-3.8.0.
239
+
240
+ * RSpec's Autotest subclasses compatible with ZenTest-3.8.0 (thanks to Ryan Davis for making it easier on Autotest subs).
241
+ * Applied patch from idl to add spec/lib to rake stats. Closes #226.
242
+ * calling setup_fixtures and teardown_fixtures for Rails >= r8570. Closes #219.
243
+ * Applied patch from Josh Knowles using ActiveSupport's Inflector (when available) to make 'should have' read a bit better. Closes #197.
244
+ * Fixed regression in 1.1 that caused failing examples to fail to generate their own names. Closes #209.
245
+ * Applied doc patch from Jens Krämer for capturing content_for
246
+ * Applied patch from Alexander Lang to clean up story steps after each story. Closes #198.
247
+ * Applied patch from Josh Knowles to support 'string_or_response.should have_text(...)'. Closes #193.
248
+ * Applied patch from Ian Dees to quiet the Story Runner backtrace. Closes #183.
249
+ * Complete support for defining steps with regexp 'names'.
250
+
251
+ === Version 1.1.1
252
+
253
+ Bug fix release.
254
+
255
+ * Fix regression in 1.1.0 that caused transactions to not get rolled back between examples.
256
+ * Applied patch from Bob Cotton to reintroduce ExampleGroup.description_options. Closes LH[#186]
257
+
258
+ === Version 1.1.0
259
+
260
+ The "tell me a story and go nest yourself" release.
261
+
262
+ * Applied patch from Mike Vincent to handle generators rails > 2.0.1. Closes LH[#181]
263
+ * Formatter.pending signature changed so it gets passed an ExampleGroup instance instead of the name ( LH[#180])
264
+ * Fixed LH[#180] Spec::Rails::Example::ModelExampleGroup and friends show up in rspec/rails output
265
+ * Spec::Rails no longer loads ActiveRecord extensions if it's disabled in config/boot.rb
266
+ * Applied LH[#178] small annoyances running specs with warnings enabled (Patch from Mikko Lehtonen)
267
+ * Tighter integration with Rails fixtures. Take advantage of fixture caching to get performance improvements (Thanks to Pat Maddox, Nick Kallen, Jonathan Barnes, and Curtis)
268
+
269
+ === Version 1.1.0-RC1
270
+
271
+ Textmate Bundle users - this release adds a new RSpec bundle that highlights describe, it, before and after and
272
+ provides navigation to descriptions and examples (rather than classes and methods). When you first install this,
273
+ it is going to try to hijack all of your .rb files. All you need to do is open a .rb file that does not end with
274
+ 'spec.rb' and change the bundle selection from RSpec to Ruby. TextMate will do the right thing from then on.
275
+
276
+ Shortcuts for tab-activated snippets all follow the TextMate convention of 2 or 3 letters of the first word, followed by the first letter of each subsequent word. So "should have_at_least" would be triggered by shhal.
277
+
278
+ We reduced the scope for running spec directories, files, a single file or individual spec in TextMate to source.ruby.rspec. This allowed us to restore the standard Ruby shortcuts:
279
+
280
+ CMD-R runs all the specs in one file
281
+ CMD-SHIFT-R runs an individual spec
282
+ CMD-OPT-R runs any files or directories selected in the TextMate drawer
283
+
284
+ rspec_on_rails users - don't forget to run script/generate rspec
285
+
286
+ * Added shared_examples_for method, which you can (should) use instead of describe Foo, :shared => true
287
+ * Applied LH[#168] Fix describe Object, "description contains a # in it" (Patch from Martin Emde)
288
+ * Applied LH[#15] Reverse loading of ActionView::Base helper modules (Patch from Mark Van Holstyn)
289
+ * Applied LH[#149] Update contribute page to point towards lighthouse (Patch from Josh Knowles)
290
+ * Applied LH[#142] verify_rcov fails with latest rcov (Patch from Kyle Hargraves)
291
+ * Applied LH[#10] Allow stubs to yield and return values (Patch from Pat Maddox)
292
+ * Fixed LH[#139] version.rb in trunk missing svn last changed number
293
+ * Applied LH[#14] Adding support for by_at_least/by_at_most in Change matcher (Patch from Saimon Moore)
294
+ * Applied LH[#12] Fix for TM when switching to alternate file (Patch from Trevor Squires)
295
+ * Applied LH[#133] ExampleMatcher should match against before(:all) (Patch from Bob Cotton)
296
+ * Applied LH[#134] Only load spec inside spec_helper.rb (Patch from Mark Van Holstyn)
297
+ * RSpec now bails immediately if there are examples with identical names.
298
+ * Applied LH[#132] Plain Text stories should support Given and Given: (Patch from Jarkko Laine)
299
+ * Applied patch from Pat Maddox: Story Mediator - the glue that binds the plain text story parser with the rest of the system
300
+ * Applied LH[#16] Have SimpleMatchers expose their description for specdocs (Patch from Bryan Helmkamp)
301
+ * Stories now support --colour
302
+ * Changed the DSL modules to Example (i.e. Spec::Example instead of Spec::DSL)
303
+ * Applied [#15608] Story problem if parenthesis used in Given, When, Then or And (Patch from Sinclair Bain)
304
+ * Applied [#15659] GivenScenario fails when it is a RailsStory (Patch from Nathan Sutton)
305
+ * Fixed [#15639] rcov exclusion configuration. (Spec::Rails projects can configure rcov with spec/rcov.opts)
306
+ * The rdoc formatter (--format rdoc) is gone. It was buggy and noone was using it.
307
+ * Changed Spec::DSL::Behaviour to Spec::DSL::ExampleGroup
308
+ * Changed Spec::DSL::SharedBehaviour to Spec::DSL::SharedExampleGroup
309
+ * Applied [#14023] Small optimization for heavily proxied objects. (Patch from Ian Leitch)
310
+ * Applied [#13943] ProfileFormatter (Top 10 slowest examples) (Patch from Ian Leitch)
311
+ * Fixed [#15232] heckle is not working correctly in trunk (as of r2801)
312
+ * Applied [#14399] Show pending reasons in HTML report (Patch from Bryan Helmkamp)
313
+ * Discovered fixed: [#10263] mock "leak" when setting an expectation in a block passed to mock#should_receive
314
+ * Fixed [#14671] Spec::DSL::ExampleRunner gives "NO NAME because of --dry-run" for every example for 'rake spec:doc'
315
+ * Fixed [#14543] rspec_scaffold broken with Rails 2.0
316
+ * Removed Patch [#10577] Rails with Oracle breaks 0.9.2 - was no longer necessary since we moved describe to the Main object (instead of Object)
317
+ * Fixed [#14527] specs run twice on rails 1.2.4 and rspec/rspec_on_rails trunk
318
+ * Applied [#14043] Change output ordering to show pending before errors (Patch from Mike Mangino)
319
+ * Applied [#14095] Don't have ./script/generate rspec create previous_failures.txt (Patch from Bryan Helmkamp)
320
+ * Applied [#14254] Improved error handling for Object#should and Object#should_not (Patch from Antti Tarvainen)
321
+ * Applied [#14186] Remove dead code from message_expecation.rb (Patch from Antti Tarvainen)
322
+ * Applied [#14183] Tiny improvement on mock_spec.rb (Patch from Antti Tarvainen)
323
+ * Applied [#14208] Fix to Mock#method_missing raising NameErrors instead of MockExpectationErrors (Patch from Antti Tarvainen)
324
+ * Applied [#14255] Fixed examples in mock_spec.rb and shared_behaviour_spec.rb (Patch from Antti Tarvainen)
325
+ * Applied [#14362] partially mocking objects that define == can blow up (Patch from Pat Maddox)
326
+ * test_ methods with an arity of 0 defined in a describe block or Example object will be run as an Example, providing a seamless transition from Test::Unit
327
+ * Removed BehaviourRunner
328
+ * Fixed [#13969] Spec Failures on Trunk w/ Autotest
329
+ * Applied [#14156] False positives with should_not (Patch from Antti Tarvainen)
330
+ * Applied [#14170] route_for and params_from internal specs fixed (Patch from Antti Tarvainen)
331
+ * Fixed [#14166] Cannot build trunk
332
+ * Applied [#14142] Fix for bug #11602: Nested #have_tag specifications fails on the wrong line number (Patch from Antti Tarvainen)
333
+ * Removed warn_if_no_files argument and feature
334
+ * Steps (Given/When/Then) with no blocks are treated as pending
335
+ * Applied [#13913] Scenario should treat no code block as pending (Patch from Evan Light)
336
+ * Fixed [#13370] Weird mock expectation error (Patch from Mike Mangino)
337
+ * Applied [#13952] Fix for performance regression introduced in r2096 (Patch from Ian Leitch)
338
+ * Applied [#13881] Dynamically include Helpers that are included on ActionView::Base (Patch from Brandon Keepers)
339
+ * Applied [#13833] ActionView::Helpers::JavaScriptMacrosHelper removed after 1.2.3 (Patch from Yurii Rashkovskii)
340
+ * Applied [#13814] RSpec on Rails w/ fixture-scenarios (Patch from Shintaro Kakutani)
341
+ * Add ability to define Example subclass instead of using describe
342
+ * Applied Patch from James Edward Gray II to improve syntax highlighting in TextMate
343
+ * Fixed [#13579] NoMethodError not raised for missing helper methods
344
+ * Fixed [#13713] form helper method 'select' can not be called when calling custom helper methods from specs
345
+ * Example subclasses Test::Unit::TestCase
346
+ * Added stub_everything method to create a stub that will return itself for any message it doesn't understand
347
+ * Added stories directory with stories/all.rb and stories/helper.rb when you script/generate rspec
348
+ * Applied [#13554] Add "And" so you can say Given... And... When... Then... And...
349
+ * Applied [#11254] RSpec syntax coloring and function pop-up integration in TextMate (Patch from Wincent Colaiuta)
350
+ * Applied [#13143] ActionView::Helpers::RecordIdentificationHelper should be included if present (Patch from Jay Levitt)
351
+ * Applied [#13567] patch to allow stubs to yield consecutive values (Patch from Rupert Voelcker)
352
+ * Applied [#13559] reverse version of route_for (Patch from Rupert Voelcker)
353
+ * Added [#13532] /lib specs should get base EvalContext
354
+ * Applied [#13451] Add a null_object option to mock_model (Patch from James Deville)
355
+ * Applied [#11919] Making non-implemented specs easy in textmate (Patch from Scott Taylor)
356
+ * Applied [#13274] ThrowSymbol recognized a NameError triggered by Kernel#method_missing as a thrown Symbol
357
+ * Applied [#12722] the alternate file command does not work in rails views due to scope (Patch from Carl Porth)
358
+ * Behaviour is now a Module that is used by Example class methods and SharedBehaviour
359
+ * Added ExampleDefinition
360
+ * Added story runner framework based on rbehave [#12628]
361
+ * Applied [#13336] Helper directory incorrect for rake stats in statsetup task (Patch from Curtis Miller)
362
+ * Applied [#13339] Add the ability for spec_parser to parse describes with :behaviour_type set (Patch from Will Leinweber and Dav Yaginuma)
363
+ * Fixed [#13271] incorrect behaviour with expect_render and stub_render
364
+ * Applied [#13129] Fix failing specs in spec_distributed (Patch from Bob Cotton)
365
+ * Applied [#13118] Rinda support for Spec::Distributed (Patch from Bob Cotton)
366
+ * Removed BehaviourEval
367
+ * Removed Behaviour#inherit
368
+ * Moved implementation of install_dependencies to example_rails_app
369
+ * Renamed RSPEC_DEPS to VENDOR_DEPS
370
+ * Added Example#not_implemented?
371
+ * You can now stub!(:msg).with(specific args)
372
+ * describe("A", Hash, "with one element") will generate description "A Hash with one element" (Tip from Ola Bini)
373
+ * Applied [#13016] [DOC] Point out that view specs render, well, a view (Patch from Jay Levitt)
374
+ * Applied [#13078] Develop rspec with autotest (Patch from Scott Taylor)
375
+ * Fixed [#13065] Named routes throw a NoMethodError in Helper specs (Patches from James Deville and Mike Mangino)
376
+ * Added (back) the verbose attribute in Spec::Rake::SpecTask
377
+ * Changed documentation to point at the new http svn URL, which is more accessible.
378
+
379
+ === Version 1.0.8
380
+
381
+ Another bugfix release - this time to resolve the version mismatch
382
+
383
+ === Version 1.0.7
384
+
385
+ Quick bugfix release to ensure that you don't have to have the rspec gem installed
386
+ in order to use autotest with rspec_on_rails.
387
+
388
+ * Fixed [#13015] autotest gives failure in 'spec_command' after upgrade 1.0.5 to 1.0.6
389
+
390
+ === Version 1.0.6
391
+
392
+ The "holy cow, batman, it's been a long time since we released and there are a ton of bug
393
+ fixes, patches and even new features" release.
394
+
395
+ Warning: Spec::Rails users: In fixing 11508, we've removed the raise_controller_errors method. As long as you
396
+ follow the upgrade instructions and run 'script/generate rspec' you'll be fine, but if you skip this
397
+ step you need to manually go into spec_helper.rb and remove the call to that method (if present - it
398
+ might not be if you haven't upgraded in a while).
399
+
400
+ Warning: Implementors of custom formatters. Formatters will now be sent an Example object instead of just a
401
+ String for #example_started, #example_passed and #example_failed. In certain scenarios
402
+ (Spec::Ui with Spec::Distributed), the formatter must ask the Example for its sequence number instead of
403
+ keeping track of a sequence number internal to the formatter. Most of you shouldn't need to upgrade
404
+ your formatters though - the Example#to_s method returns the example name/description, so you should be
405
+ able to use the passed Example instance as if it were a String.
406
+
407
+ * Applied [#12986] Autotest Specs + Refactoring (Patch from Scott Tayler)
408
+ * Added a #close method to formatters, which allows them to gracefully close streams.
409
+ * Applied [#12935] Remove requirement that mocha must be installed as a gem when used as mocking framework. (Patch from Ryan Kinderman).
410
+ * Fixed [#12893] RSpec's Autotest should work with rspec's trunk
411
+ * Fixed [#12865] Partial mock error when object has an @options instance var
412
+ * Applied [#12701] Allow checking of content captured with content_for in view specs (Patch from Jens Kr�mer)
413
+ * Applied [#12817] Cannot include same shared behaviour when required with absolute paths (Patch from Ian Leitch)
414
+ * Applied [#12719] rspec_on_rails should not include pagination helper (Patch from Matthijs Langenberg)
415
+ * Fixed [#12714] helper spec not finding rails core helpers
416
+ * Applied [#12611] should_not redirect_to implementation (Patch from Yurii Rashkovskii)
417
+ * Applied [#12682] Not correctly aliasing original 'stub!' and 'should_receive' methods for ApplicationController (Patch from Matthijs Langenberg)
418
+ * Disabled controller.should_receive(:render) and controller.stub!(:render). Use expect_render or stub_render instead.
419
+ * Applied [#12484] Allow a Behaviour's Description to flow through to the Formatter (Patch from Bob Cotton)
420
+ * Fixed [#12448] The spec:plugins rake task from rspec_on_rails should ignore specs from the rspec_on_rails plugin
421
+ * Applied [#12300] rr integration (patch from Kyle Hargraves)
422
+ * Implemented [#12284] mock_with :rr (integration with RR mock framework: http://rubyforge.org/projects/pivotalrb/)
423
+ * Applied [#12237] (tiny) added full path to mate in switch_command (Patch from Carl Porth)
424
+ * Formatters will now be sent an Example object instead of just a String for certain methods
425
+ * All Spec::Rake::SpecTask attributes can now be procs, which allows for lazy evaluation.
426
+ * Changed the Spec::Ui interfaces slightly. See examples.
427
+ * Applied [#12174] mishandling of paths with spaces in spec_mate switch_command (Patch from Carl Porth)
428
+ * Implemented [#8315] File "Go to..." functionality
429
+ * Applied [#11917] Cleaner Spec::Ui error for failed Selenium connection (Patch from Ian Dees)
430
+ * Applied [#11888] rspec_on_rails spews out warnings when assert_select is used with an XML response (Patch from Ian Leitch)
431
+ * Applied [#12010] Nicer failure message formatting (Patch from Wincent Colaiuta)
432
+ * Applied [#12156] smooth open mate patch (Patch from Ienaga Eiji)
433
+ * Applied [#10577] Rails with Oracle breaks 0.9.2. (Patch from Sinclair Bain)
434
+ * Fixed [#12079] auto-generated example name incomplete: should have 1 error on ....]
435
+ * Applied [#12066] Docfix for mocks/mocks.page (Patch from Kyle Hargraves)
436
+ * Fixed [#11891] script/generate rspec_controller fails to create appropriate views (from templates) on edge rails
437
+ * Applied [#11921] Adds the correct controller_name from derived_controller_name() to the ViewExampleGroupController (Patch from Eloy Duran)
438
+ * Fixed [#11903] config.include with behaviour_type 'hash' does not work
439
+ * Examples without blocks and pending is now reported with a P instead of a *
440
+ * Pending blocks that now pass are rendered blue
441
+ * New behaviour for after: If an after block raises an error, the other ones will still run instead of bailing at the first.
442
+ * Made it possible to run spec from RSpec.tmbundle with --drb against a Rails spec_server.
443
+ * Applied [#11868] Add ability for pending to optionally hold a failing block and to fail when it passes (Patch from Bob Cotton)
444
+ * Fixed [#11843] watir_behaviour missing from spec_ui gem
445
+ * Added 'switch between source and spec file' command in Spec::Mate (based on code from Ruy Asan)
446
+ * Applied [#11509] Documentation - RSpec requires hpricot
447
+ * Applied [#11807] Daemonize spec_server and rake tasks to manage them. (patch from Kyosuke MOROHASHI)
448
+ * Added pending(message) method
449
+ * Fixed [#11777] should render_template doesn't check paths correctly
450
+ * Fixed [#11749] Use of 'rescue => e' does not catch all exceptions
451
+ * Fixed [#11793] should raise_error('with a message') does not work correctly
452
+ * Fixed [#11774] Mocks should respond to :kind_of? in the same way they respond to :is_a?
453
+ * Fixed [#11508] Exceptions are not raised for Controller Specs (removed experimental raise_controller_errors)
454
+ * Applied [#11615] Partial mock methods give ambiguous failures when given a method name as a String (Patch from Jay Phillips)
455
+ * Fixed [#11545] Rspec doesn't handle should_receive on ActiveRecord associations (Patch from Ian White)
456
+ * Fixed [#11514] configuration.use_transactional_fixtures is ALWAYS true, regardless of assignment
457
+ * Improved generated RESTful controller examples to cover both successful and unsuccessful POST and PUT
458
+ * Changed TextMate snippets for controllers to pass controller class names to #describe rather than controller_name.
459
+ * Changed TextMate snippets for mocks to use no_args() and any_args() instead of the deprecated Symbols.
460
+ * Applied [#11500] Documentation: no rails integration specs in 1.0
461
+ * Renamed SpecMate's shortcuts for running all examples and focused examples to avoid conflicts (CMD-d and CMD-i)
462
+ * Added a TextMate snippet for custom matchers, lifted from Geoffrey Grosenbach's RSpec peepcode show.
463
+ * The translator translates mock constraints to the new matchers that were introduced in 1.0.4
464
+ * Documented environment variables for Spec::Rake::SpecTask. Renamed SPECOPTS and RCOVOPTS to SPEC_OPTS and RCOV_OPTS.
465
+ * Fixed [#10534] Windows: undefined method 'controller_name'
466
+
467
+ === Version 1.0.5
468
+ Bug fixes. Autotest plugin tweaks.
469
+
470
+ * Fixed [#11378] fix to 10814 broke drb (re-opened #10814)
471
+ * Fixed [#11223] Unable to access flash from rails helper specs
472
+ * Fixed [#11337] autotest runs specs redundantly
473
+ * Fixed [#11258] windows: autotest won't run
474
+ * Applied [#11253] Tweaks to autotest file mappings (Patch from Wincent Colaiuta)
475
+ * Applied [#11252] Should be able to re-load file containing shared behaviours without raising an exception (Patch from Wincent Colaiuta)
476
+ * Fixed [#11247] standalone autotest doesn't work because of unneeded autotest.rb
477
+ * Applied [#11221] Autotest support does not work w/o Rails Gem installed (Patch from Josh Knowles)
478
+
479
+ === Version 1.0.4
480
+ The getting ready for JRuby release.
481
+
482
+ * Fixed [#11181] behaviour_type scoping of config.before(:each) is not working
483
+ * added mock argument constraint matchers (anything(), boolean(), an_instance_of(Type)) which work with rspec or mocha
484
+ * added mock argument constraint matchers (any_args(), no_args()) which only work with rspec
485
+ * deprecated rspec's symbol mock argument constraint matchers (:any_args, :no_args, :anything, :boolean, :numeric, :string)
486
+ * Added tarball of rspec_on_rails to the release build to support folks working behind a firewall that blocks svn access.
487
+ * Fixed [#11137] rspec incorrectly handles flash after resetting the session
488
+ * Fixed [#11143] Views code for ActionController::Base#render broke between 1.0.0 and 1.0.3 on Rails Edge r6731
489
+ * Added raise_controller_errors for controller examples in Spec::Rails
490
+
491
+ === Version 1.0.3
492
+ Bug fixes.
493
+
494
+ * Fixed [#11104] Website uses old specify notation
495
+ * Applied [#11101] StringHelpers.starts_with?(prefix) assumes a string parameter for _prefix_
496
+ * Removed 'rescue nil' which was hiding errors in controller examples.
497
+ * Fixed [#11075] controller specs fail when using mocha without integrated_views
498
+ * Fixed problem with redirect_to failing incorrectly against edge rails.
499
+ * Fixed [#11082] RspecResourceGenerator should be RspecScaffoldGenerator
500
+ * Fixed [#10959] Focused Examples do not work for Behaviour defined with constant with modules
501
+
502
+ === Version 1.0.2
503
+ This is just to align the version numbers in rspec and rspec_on_rails.
504
+
505
+ === Version 1.0.1
506
+ This is a maintenance release with mostly cleaning up, and one minor enhancement -
507
+ Modules are automatically included when described directly.
508
+
509
+ * Renamed Spec::Rails' rspec_resource generator to rspec_scaffold.
510
+ * Removed Spec::Rails' be_feed matcher since it's based on assert_select_feed which is not part of Rails (despite that docs for assert_select_encoded says it is).
511
+ * describe(SomeModule) will include that module in the examples. Like for Spec::Rails helpers, but now also in core.
512
+ * Header in HTML report will be yellow instead of red if there is one failed example
513
+ * Applied [#10951] Odd instance variable name in rspec_model template (patch from Kyle Hargraves)
514
+ * Improved integration with autotest (Patches from Ryan Davis and David Goodland)
515
+ * Some small fixes to make all specs run on JRuby.
516
+
517
+ === Version 1.0.0
518
+ The stake in the ground release. This represents a commitment to the API as it is. No significant
519
+ backwards compatibility changes in the API are expected after this release.
520
+
521
+ * Fixed [#10923] have_text matcher does not support should_not
522
+ * Fixed [#10673] should > and should >= broken
523
+ * Applied [#10921] Allow verify_rcov to accept greater than threshold coverage %'s via configuration
524
+ * Applied [#10920] Added support for not implemented examples (Patch from Chad Humphries and Ken Barker)
525
+ * Patch to allow not implemented examples. This works by not providing a block to the example. (Patch from Chad Humphries, Ken Barker)
526
+ * Yanked support for Rails 1.1.6 in Spec::Rails
527
+ * RSpec.tmbundle uses CMD-SHIFT-R to run focused examples now.
528
+ * Spec::Rails now bundles a spec:rcov task by default (suggestion from Kurt Schrader)
529
+ * Fixed [#10814] Runner loads shared code, test cases require them again
530
+ * Fixed [#10753] Global before and after
531
+ * Fixed [#10774] Allow before and after to be specified in config II
532
+ * Refactored Spec::Ui examples to use new global before and after blocks.
533
+ * Added instructions about how to get Selenium working with Spec::Ui (spec_ui/examples/selenium/README.txt)
534
+ * Fixed [#10805] selenium.rb missing from gem?
535
+ * Added rdocs explaining how to deal with errors in Rails' controller actions
536
+ * Applied [#10770] Finer grained includes.
537
+ * Fixed [#10747] Helper methods defined in shared specs are not visible when shared spec is used
538
+ * Fixed [#10748] Shared descriptions in separate files causes 'already exists' error
539
+ * Applied [#10698] Running with --drb executes specs twice (patch from Ruy Asan)
540
+ * Fixed [#10871] 0.9.4 - Focussed spec runner fails to run specs in descriptions with type and string when there is no leading space in the string
541
+
542
+ === Version 0.9.4
543
+ This release introduces massive improvements to Spec::Ui - the user interface functional testing
544
+ extension to RSpec. There are also some minor bug fixes to the RSpec core.
545
+
546
+ * Massive improvements to Spec::Ui. Complete support for all Watir's ie.xxx(how, what) methods. Inline screenshots and HTML.
547
+ * Reactivated --timeout, which had mysteriously been deactivated in a recent release.
548
+ * Fixed [#10669] Kernel#describe override does not cover Kernel#context
549
+ * Applied [#10636] Added spec for OptionParser in Runner (Patch from Scott Taylor)
550
+ * Added [#10516] should_include should be able to accept multiple items
551
+ * Applied [#10631] redirect_to matcher doesn't respect request.host (Patch from Tim Lucas)
552
+ * Each formatter now flushes their own IO. This is to avoid buffering of output.
553
+ * Fixed [#10670] IVarProxy#delete raises exception when instance variable does not exist
554
+
555
+ === Version 0.9.3
556
+ This is a bugfix release.
557
+
558
+ * Fixed [#10594] Failing Custom Matcher show NAME NOT GENERATED description
559
+ * describe(SomeType, "#message") will not add a space: "SomeType#message" (likewise for '.')
560
+ * describe(SomeType, "message") will have a decription with a space: "SomeType message"
561
+ * Applied [#10566] prepend_before and prepend_after callbacks
562
+ * Applied [#10567] Call setup and teardown using before and after callbacks
563
+
564
+ === Version 0.9.2
565
+ This is a quick maintenance release.
566
+
567
+ * Added some website love
568
+ * Fixed [#10542] reverse predicate matcher syntax
569
+ * Added a spec:translate Rake task to make 0.9 translation easier with Spec:Rails
570
+ * Better translation of should_redirect_to
571
+ * Fixed --colour support for Windows. This is a regression that was introduced in 0.9.1
572
+ * Applied [#10460] Make SpecRunner easier to instantiate without using commandline args
573
+
574
+ === Version 0.9.1
575
+
576
+ This release introduces #describe and #it (aliased as #context and #specify for
577
+ backwards compatibility). This allows you to express specs like this:
578
+
579
+ describe SomeClass do # Creates a Behaviour
580
+ it "should do something" do # Creates an Example
581
+ end
582
+ end
583
+
584
+ The command line features four new options that give you more control over what specs
585
+ are being run and in what order. This can be used to verify that your specs are
586
+ independent (by running in opposite order with --reverse). It can also be used to cut
587
+ down feedback time by running the most recently modified specs first (--loadby mtime --reverse).
588
+
589
+ Further, --example replaces the old --spec option, and it can now take a file name of
590
+ spec names as an alternative to just a spec name. The --format failing_examples:file.txt
591
+ option allows you to output an --example compatible file, which makes it possible to only
592
+ rerun the specs that failed in the last run. Spec::Rails uses all of these four options
593
+ by default to optimise your RSpec experience.
594
+
595
+ There is now a simple configuration model. For Spec::Rails, you do something like this:
596
+
597
+ Spec::Runner.configure do |config|
598
+ config.use_transactional_fixtures = true
599
+ config.use_instantiated_fixtures = false
600
+ config.fixture_path = RAILS_ROOT + '/spec/fixtures'
601
+ end
602
+
603
+ You can now use mocha or flexmock with RSpec if you prefer either to
604
+ RSpec's own mock framework. Just put this:
605
+
606
+ Spec::Runner.configure do |config|
607
+ config.mock_with :mocha
608
+ end
609
+
610
+ or this:
611
+
612
+ Spec::Runner.configure do |config|
613
+ config.mock_with :flexmock
614
+ end
615
+
616
+ in a file that is loaded before your specs. You can also
617
+ configure included modules and predicate_matchers:
618
+
619
+ Spec::Runner.configure do |config|
620
+ config.include SomeModule
621
+ config.predicate_matchers[:does_something?] = :do_something
622
+ end
623
+
624
+ See Spec::DSL::Behaviour for more on predicate_matchers
625
+
626
+ * Sugar FREE!
627
+ * Added [10434 ] Please Make -s synonymous with -e for autotest compat. This is temporary until autotest uses -e instead of -s.
628
+ * Fixed [#10133] custom predicate matchers
629
+ * Applied [#10473] Add should exist (new matcher) - Patch from Bret Pettichord
630
+ * Added another formatter: failing_behaviours. Writes the names of the failing behaviours for use with --example.
631
+ * Applied [#10315] Patch to fix pre_commit bug 10313 - pre_commit_rails: doesn't always build correctly (Patch from Antii Tarvainen)
632
+ * Applied [#10245] Patch to HTML escape the behavior name when using HTML Formatter (Patch from Josh Knowles)
633
+ * Applied [#10410] redirect_to does not behave consistently with regards to query string parameter ordering (Patch from Nicholas Evans)
634
+ * Applied [#9605] Patch for ER 9472, shared behaviour (Patch by Bob Cotton)
635
+ * The '--format rdoc' option no longer causes a dry-run by default. --dry-run must be used explicitly.
636
+ * It's possible to specify the output file in the --format option (See explanation in --help)
637
+ * Several --format options may be specified to output several formats in one run.
638
+ * The --out option is gone. Use --format html:path/to/my.html instead (or similar).
639
+ * Spec::Runner::Formatter::BaseTextFormatter#initialize only takes one argument - an IO. dry_run and color are setters.
640
+ * Made Spec::Ui *much* easier to install. It will be released separately. Check out trunk/spec_ui/examples
641
+ * HTML reports now include a syntax highlighted snippet of the source code where the spec failed (needs the syntax gem)
642
+ * Added [#10262] Better Helper testing of Erb evaluation block helpers
643
+ * Added [#9735] support flexmock (thanks to Jim Weirich for his modifications to flexmock to support this)
644
+ * Spec::Rails controller specs will no longer let mock exception ripple through to the response.
645
+ * Fixed [#9260] IvarProxy does not act like a hash.
646
+ * Applied [#9458] The rspec_scaffold generator does not take into account class nesting (Patch from Steve Tendon)
647
+ * Applied [#9132] Rakefile spec:doc can fail without preparing database (Patch from Steve Ross)
648
+ * Applied [#9678] Custom runner command line switch, and multi-threaded runner (Patch from Bob Cotton)
649
+ * Applied [#9926] Rakefile - RSPEC_DEPS constant as an Array of Hashes instead of an Array of Arrays (Patch from Scott Taylor)
650
+ * Applied [#9925] Changed ".rhtml" to "template" in REST spec generator (Patch from Scott Taylor)
651
+ * Applied [#9852] Patch for RSpec's Website using Webgen 0.4.2 (Patch from Scott Taylor)
652
+ * Fixed [#6523] Run rspec on rails without a db
653
+ * Fixed [#9295] rake spec should run anything in the spec directory (not just rspec's standard dirs)
654
+ * Added [#9786] infer controller and helper names from the described type
655
+ * Fixed [#7795] form_tag renders action='/view_spec' in view specs
656
+ * Fixed [#9767] rspec_on_rails should not define rescue_action on controllers
657
+ * Fixed [#9421] --line doesn't work with behaviours that use class names
658
+ * Fixed [#9760] rspec generators incompatible with changes to edge rails
659
+ * Added [#9786] infer controller and helper names from the described type
660
+ * Applied a simplified version of [#9282] Change to allow running specs from textmate with rspec installed as a rails plugin (and no rspec gem installed)
661
+ * Applied [#9700] Make Spec::DSL::Example#name public / Add a --timeout switch. A great way to prevent specs from getting slow.
662
+ * In Rails, script/generate rspec will generate a spec.opts file that optimises faster/more efficient running of specs.
663
+ * Added [#9522] support using rspec's expectations with test/unit
664
+ * Moved rspec_on_rails up to the project root, simplifying the download url
665
+ * Fixed [#8103] RSpec not installing spec script correctly.
666
+ * The --spec option is replaced by the --example option.
667
+ * The --loadby option no longer supports a file argument. Use --example file_name instead.
668
+ * The --example option can now take a file name as an argument. The file should contain example names.
669
+ * Internal classes are named Behaviour/Example (rather than Context/Specification).
670
+ * You can now use mocha by saying config.mock_with :mocha in a spec_helper
671
+ * before_context_eval is replaced by before_eval.
672
+ * Applied [#9509] allow spaced options in spec.opts
673
+ * Applied [#9510] Added File for Ruby 1.8.6
674
+ * Applied [#9511] Clarification to README file in spec/
675
+ * Moved all of the Spec::Rails specs down to the plugins directory - now you can run the specs after you install.
676
+ * Updated RSpec.tmbundle to the 0.9 syntax and replaced context/specify with describe/it.
677
+ * Applied [#9232] ActionController::Base#render is sometimes protected (patch from Dan Manges)
678
+ * Added --reverse option, allowing contexts/specs to be run in reverse order.
679
+ * Added --loadby option, allowing better control over load order for spec files. mtime and file.txt supported.
680
+ * Implemented [#8696] --order option (see --reverse and --loadby)
681
+ * Added describe/it as aliases for context/specify - suggestion from Dan North.
682
+ * Applied [#7637] [PATCH] add skip-migration option to rspec_scaffold generator
683
+ * Added [#9167] string.should have_tag
684
+ * Changed script/rails_spec_server to script/spec_server and added script/spec (w/ path to vendor/plugins/rspec)
685
+ * Fixed [#8897] Error when mixing controller spec with/without integrated views and using template system other than rhtml
686
+ * Updated sample app specs to 0.9 syntax
687
+ * Updated generated specs to 0.9 syntax
688
+ * Applied [#8994] trunk: generated names for be_ specs (Multiple patches from Yurii Rashkovskii)
689
+ * Applied [#9983]: Allow before and after to be called in BehaviourEval. This is useful for shared examples.
690
+
691
+ === Version 0.8.2
692
+
693
+ Replaced assert_select fork with an assert_select wrapper for have_tag. This means that "should have_rjs" no longer supports :hide or :effect, but you can still use should_have_rjs for those.
694
+
695
+ === Version 0.8.1
696
+
697
+ Quick "in house" bug-fix
698
+
699
+ === Version 0.8.0
700
+
701
+ This release introduces a new approach to handling expectations using Expression Matchers.
702
+
703
+ See Upgrade[http://rspec.rubyforge.org/upgrade.html], Spec::Expectations, Spec::Matchers and RELEASE-PLAN for more info.
704
+
705
+ This release also improves the spec command line by adding DRb support and making it possible to
706
+ store command line options in a file. This means a more flexible RSpec experience with Rails,
707
+ Rake and editor plugins like TextMate.
708
+
709
+ It also sports myriad new features, bug fixes, patches and general goodness:
710
+
711
+ * Fixed [#8928] rspec_on_rails 0.8.0-RC1 controller tests make double call to setup_with_fixtures
712
+ * Fixed [#8925] Documentation bug in 0.8.0RC1 rspec website
713
+ * Applied [#8132] [PATCH] RSpec breaks "rake db:sessions:create" in a rails project that has the rspec_on_rails plugin (Patch from Erik Kastner)
714
+ * Fixed [#8789] --line and --spec not working when the context has parenhesis in the name
715
+ * Added [#8783] auto generate spec names from last expectation
716
+ * --heckle now fails if the heckled class or module is not found.
717
+ * Fixed [#8771] Spec::Mocks::BaseExpectation#with converts hash params to array of arrays with #collect
718
+ * Fixed [#8750] should[_not]_include backwards compatibility between 0.8.0-RC1 and 0.7.5.1 broken
719
+ * Fixed [#8646] Context Runner does not report on Non standard exceptions and return a 0 return code
720
+ * RSpec on Rails' spec_helper.rb will only force RAILS_ENV to test if it was not specified on the command line.
721
+ * Fixed [#5485] proc#should_raise and proc#should_not_raise output
722
+ * Added [#8484] should_receive with blocks
723
+ * Applied [#8218] heckle_runner.rb doesn't work with heckle >= 1.2.0 (Patch from Michal Kwiatkowski)
724
+ * Fixed [#8240] Cryptic error message when no controller_name
725
+ * Applied [#7461] [PATCH] Contexts don't call Module::included when they include a module
726
+ * Removed unintended block of test/unit assertions in rspec_on_rails - they should all, in theory, now be accessible
727
+ * Added mock_model method to RSpec on Rails, which stubs common methods. Based on http://metaclass.org/2006/12/22/making-a-mockery-of-activerecord
728
+ * Fixed [#8165] Partial Mock Errors when respond_to? is true but the method is not in the object
729
+ * Fixed [#7611] Partial Mocks override Subclass methods
730
+ * Fixed [#8302] Strange side effect when mocking a class method
731
+ * Applied [#8316] to_param should return a stringified key in resource generator's controller spec (Patch from Chris Anderson)
732
+ * Applied [#8216] shortcut for creating object stub
733
+ * Applied [#8008] Correct generated specs for view when calling resource generator (Patch from Jonathan Tron)
734
+ * Fixed [#7754] Command-R fails to run spec in TextMate (added instruction from Luke Redpath to the website)
735
+ * Fixed [#7826] RSpect.tmbundle web page out of date.
736
+ * RSpec on Rails specs are now running against RoR 1.2.1 and 1.2.2
737
+ * rspec_scaffold now generates specs for views
738
+ * In a Rails app, RSpec core is only loaded when RAILS_ENV==test (init.rb)
739
+ * Added support for target.should arbitrary_expectation_handler and target.should_not arbitrary_expectation_handler
740
+ * Fixed [#7533] Spec suite fails and the process exits with a code 0
741
+ * Fixed [#7565] Subsequent stub! calls for method fail to override the first call to method
742
+ * Applied [#7524] Incorrect Documentation for 'pattern' in Rake task (patch from Stephen Duncan)
743
+ * Fixed [#7409] default fixtures do not appear to run.
744
+ * Fixed [#7507] "render..and return" doesn't return
745
+ * Fixed [#7509] rcov/rspec incorrectly includes boot.rb (Patch from Courtenay)
746
+ * Fixed [#7506] unnecessary complex output on failure of response.should be_redirect
747
+ * Applied [#6098] Make scaffold_resource generator. Based on code from Pat Maddox.
748
+ * The drbspec command is gone. Use spec --drb instead.
749
+ * The drb option is gone from the Rake task. Pass --drb to spec_opts instead.
750
+ * New -X/--drb option for running specs against a server like spec/rails' script/rails_spec_server
751
+ * New -O/--options and -G/--generate flags for file-based options (handy for spec/rails)
752
+ * Applied [#7339] Turn off caching in HTML reports
753
+ * Applied [#7419] "c option for colorizing output does not work with rails_spec" (Patch from Shintaro Kakutani)
754
+ * Applied [#7406] [PATCH] 0.7.5 rspec_on_rails loads fixtures into development database (Patch from Wilson Bilkovich)
755
+ * Applied [#7387] Allow stubs to return consecutive values (Patch from Pat Maddox)
756
+ * Applied [#7393] Fix for rake task (Patch from Pat Maddox)
757
+ * Reinstated support for response.should_render (in addition to controller.should_render)
758
+
759
+ === Version 0.7.5.1
760
+
761
+ Bug fix release to allow downloads of rspec gem using rubygems 0.9.1.
762
+
763
+ === Version 0.7.5
764
+ This release adds support for Heckle - Seattle'rb's code mutation tool.
765
+ There are also several bug fixes to the RSpec core and the RSpec on Rails plugin.
766
+
767
+ * Removed svn:externals on rails versions and plugins
768
+ * Applied [#7345] Adding context_setup and context_teardown, with specs and 100% rcov
769
+ * Applied [#7320] [PATCH] Allow XHR requests in controller specs to render RJS templates
770
+ * Applied [#7319] Migration code uses drop_column when it should use remove_column (patch from Pat Maddox)
771
+ * Added support for Heckle
772
+ * Applied [#7282] dump results even if spec is interrupted (patch from Kouhei Sutou)
773
+ * Applied [#7277] model.should_have(n).errors_on(:attribute) (patch from Wilson Bilkovich)
774
+ * Applied [#7270] RSpec render_partial colliding with simply_helpful (patch from David Goodlad)
775
+ * Added [#7250] stubs should support throwing
776
+ * Added [#7249] stubs should support yielding
777
+ * Fixed [#6760] fatal error when accessing nested finders in rspec
778
+ * Fixed [#7179] script/generate rspec_scaffold generates incorrect helper name
779
+ * Added preliminary support for assert_select (response.should_have)
780
+ * Fixed [#6971] and_yield does not work when the arity is -1
781
+ * Fixed [#6898] Can we separate rspec from the plugins?
782
+ * Added [#7025] should_change should accept a block
783
+ * Applied [#6989] partials with locals (patch from Micah Martin)
784
+ * Applied [#7023] Typo in team.page
785
+
786
+ === Version 0.7.4
787
+
788
+ This release features a complete redesign of the reports generated with --format html.
789
+ As usual there are many bug fixes - mostly related to spec/rails.
790
+
791
+ * Applied [#7010] Fixes :spacer_template does not work w/ view spec (patch from Shintaro Kakutani)
792
+ * Applied [#6798] ensure two ':' in the first backtrace line for Emacs's 'next-error' command (patch from Kouhei Sutou)
793
+ * Added Much nicer reports to generated website
794
+ * Much nicer reports with --format --html (patch from Luke Redpath)
795
+ * Applied [#6959] Calls to render and redirect in controllers should return true
796
+ * Fixed [#6981] helper method is not available in partial template.
797
+ * Added [#6978] mock should tell you the expected and actual args when receiving the right message with the wrong args
798
+ * Added the possibility to tweak the output of the HtmlFormatter (by overriding extra_failure_content).
799
+ * Fixed [#6936] View specs don't include ApplicationHelper by default
800
+ * Fixed [#6903] Rendering a partial in a view makes the view spec blow up
801
+ * Added callback library from Brian Takita
802
+ * Added [#6925] support controller.should_render :action_name
803
+ * Fixed [#6884] intermittent errors related to method binding
804
+ * Fixed [#6870] rspec on edge rails spec:controller fixture loading fails
805
+ * Using obj.inspect for all messages
806
+ * Improved performance by getting rid of instance_exec (instance_eval is good enough because we never need to pass it args)
807
+
808
+ === Version 0.7.3
809
+
810
+ Almost normal bug fix/new feature release.
811
+
812
+ A couple of things you need to change in your rails specs:
813
+ # spec_helper.rb is a little different (see http://rspec.rubyforge.org/upgrade.html)
814
+ # use controller.should_render before OR after the action (controller.should_have_rendered is deprecated)
815
+
816
+ * Applied [#6577] messy mock backtrace when frozen to edge rails (patch from Jay Levitt)
817
+ * Fixed [#6674] rspec_on_rails fails on @session deprecation warning
818
+ * Fixed [#6780] routing() was failing...fix included - works for 1.1.6 and edge (1.2)
819
+ * Fixed [#6835] bad message with arbitrary predicate
820
+ * Added [#6731] Partial templates rendered
821
+ * Fixed [#6713] helper methods not rendered in view tests?
822
+ * Fixed [#6707] cannot run controller / helper tests via rails_spec or spec only works with rake
823
+ * Applied [#6417] lambda {...}.should_change(receiver, :message) (patch from Wilson Bilkovich)
824
+ * Eliminated dependency on ZenTest
825
+ * Fixed [#6650] Reserved characters in the TextMate bundle break svn on Win32
826
+ * Fixed [#6643] script/generate rspec_controller: invalid symbol generation for 'controller_name' for *modularized* controllers
827
+ * The script/rails_spec command has been moved to bin/drbspec in RSpec core (installed by the gem)
828
+
829
+ === Version 0.7.2
830
+
831
+ This release introduces a brand new RSpec bundle for TextMate, plus some small bugfixes.
832
+
833
+ * Packaged RSpec.tmbundle.tgz as part of the distro
834
+ * Fixed [#6593] Add moving progress bar to HtmlFormatter using Javascript
835
+ * Applied [#6265] should_raise should accept an Exception object
836
+ * Fixed [#6616] Can't run Rails specs with RSpec.tmbundle
837
+ * Fixed [#6411] Can't run Rails specs with ruby
838
+ * Added [#6589] New -l --line option. This is useful for IDE/editor runners/extensions.
839
+ * Fixed [#6615] controller.should_render_rjs should support :partial => 'path/to/template'
840
+
841
+ === Version 0.7.1
842
+
843
+ Bug fixes and a couple o' new features.
844
+
845
+ * Fixed [#6575] Parse error in aliasing the partial mock original method (patch by Brian Takita)
846
+ * Fixed [#6277] debris left by stubbing (trunk) [submitted by dastels] (fixed by fix to [#6575])
847
+ * Fixed [#6575] Parse error in aliasing the partial mock original method
848
+ * Fixed [#6555] should_have_tag does not match documentation
849
+ * Fixed [#6567] SyntaxError should not stop entire run
850
+ * Fixed [#6558] integrated views look for template even when redirected
851
+ * Fixed [#6547] response.should be_redirect broken in 0.7.0
852
+ * Applied [#6471] Easy way to spec routes
853
+ * Applied [#6587] Rspec on Rails displays "Spec::Rails::ContextFactory" as context name
854
+ * Applied [#6514] Document has trivial typos.
855
+ * Added [#6560] controller.session should be available before the action
856
+ * Added support for should_have_rjs :visual_effect
857
+ * Different printing and colours for unmet expectations (red) and other exceptions (magenta)
858
+ * Simplified method_missing on mock_methods to make it less invasive on partial mocks.
859
+
860
+ === Version 0.7.0
861
+
862
+ This is the "Grow up and eat your own dog food release". RSpec is now used on itself and
863
+ we're no longer using Test::Unit to test it. Although, we are still extending Test::Unit
864
+ for the rails plugin (indirectly - through ZenTest)
865
+
866
+ IMPORTANT NOTE: THIS RELEASE IS NOT 100% BACKWARDS COMPATIBLE TO 0.6.x
867
+
868
+ There are a few changes that will require that you change your existing specs.
869
+
870
+ RSpec now handles equality exactly like ruby does:
871
+
872
+ # actual.should_equal(expected) will pass if actual.equal?(expected) returns true
873
+ # actual.should eql(expected) will pass if actual.eql?(expected) returns true
874
+ # actual.should == expected will pass if actual == expected) returns true
875
+
876
+ At the high level, eql? implies equivalence, while equal? implies object identity. For more
877
+ information on how ruby deals w/ equality, you should do this:
878
+
879
+ ri equal?
880
+
881
+ or look at this:
882
+
883
+ http://www.ruby-doc.org/core/classes/Object.html#M001057
884
+
885
+ Also, we left in should_be as a synonym for should_equal, so the only specs that should break are the
886
+ ones using should_equal (which used to use <code>==</code> instead of <code>.equal?</code>).
887
+
888
+ Lastly, should_be used to handle true and false differently from any other values. We've removed
889
+ this special handling, so now actual.should_be true will fail for any value other than true (it
890
+ used to pass for any non-nil, non-false value), and actual.should_be false will fail for any
891
+ value other than false (it used to pass for nil or false).
892
+
893
+ Here's what you'll need to do to update your specs:
894
+ # search for "should_equal" and replace with "should_eql"
895
+ # run specs
896
+
897
+ If any specs still fail, they are probably related to should be_true or should_be_false using
898
+ non-boolean values. Those you'll just have to inspect manually and adjust appropriately (sorry!).
899
+
900
+ --------------------------------------------------
901
+ Specifying multiple return values in mocks now works like this:
902
+
903
+ mock.should_receive(:message).and_return(1,2,3)
904
+
905
+ It used to work like this:
906
+
907
+ mock.should_receive(:message).and_return([1,2,3])
908
+
909
+ but we decided that was counter intuitive and otherwise lame.
910
+
911
+ Here's what you'll need to do to update your specs:
912
+ # search for "and_return(["
913
+ # get rid of the "[" and "]"
914
+
915
+ --------------------------------------------------
916
+ RSpec on Rails now supports the following (thanks to ZenTest upon which it is built):
917
+
918
+ # Separate specs for models, views, controllers and helpers
919
+ # Controller specs are completely decoupled from the views by default (though you can tell them to couple themselves if you prefer)
920
+ # View specs are completely decoupled from app-specific controllers
921
+
922
+ See http://rspec.rubyforge.org/documentation/rails/index.html for more information
923
+ --------------------------------------------------
924
+ As usual, there are also other new features and bug fixes:
925
+
926
+ * Added lots of documentation on mocks/stubs and the rails plugin.
927
+ * Added support for assigns[key] syntax for controller specs (to align w/ pre-existing syntax for view specs)
928
+ * Added support for controller.should_redirect_to
929
+ * RSpec on Rails automatically checks whether it's compatible with the installed RSpec
930
+ * Applied [#6393] rspec_on_rails uses deprecated '@response' instead of the accessor
931
+ * RSpec now has 100% spec coverage(!)
932
+ * Added support for stubbing and partial mocking
933
+ * Progress (....F..F.) is now coloured. Tweaked patch from KAKUTANI Shintaro.
934
+ * Backtrace now excludes the rcov runner (/usr/local/bin/rcov)
935
+ * Fixed [#5539] predicates do not work w/ rails
936
+ * Added [#6091] support for Regexp matching messages sent to should_raise
937
+ * Added [#6333] support for Regexp matching in mock arguments
938
+ * Applied [#6283] refactoring of diff support to allow selectable formats and custom differs
939
+ * Fixed [#5564] "ruby spec_file.rb" doesn't work the same way as "spec spec_file.rb"
940
+ * Fixed [#6056] Multiple output of failing-spec notice
941
+ * Fixed [#6233] Colours in specdoc
942
+ * Applied [#6207] Allows --diff option to diff target and expected's #inspect output (Patch by Lachie Cox)
943
+ * Fixed [#6203] Failure messages are misleading - consider using inspect.
944
+ * Added [#6334] subject.should_have_xyz will try to call subject.has_xyz? - use this for hash.should_have_key(key)
945
+ * Fixed [#6017] Rake task should ignore empty or non-existent spec-dirs
946
+
947
+ === Version 0.6.4
948
+
949
+ In addition to a number of bug fixes and patches, this release begins to formalize the support for
950
+ RSpec on Rails.
951
+
952
+ * Added Christopher Petrilli's TextMate bundle to vendor/textmate/RSpec.tmbundle
953
+ * Fixed [#5909], once again supporting multi_word_predicates
954
+ * Applied [#5873] - response.should_have_rjs (initial patch from Jake Howerton, based on ARTS by Kevin Clark)
955
+ * Added generation of view specs for rspec_on_rails
956
+ * Applied [#5815] active_record_subclass.should_have(3).records
957
+ * Added support in "rake stats" for view specs (in spec/views)
958
+ * Applied [#5801] QuickRef.pdf should say RSpec, not rSpec
959
+ * Applied [#5728] rails_spec_runner fails on Windows (Patch from Lindsay Evans).
960
+ * Applied [#5708] RSpec Rails plugin rspec_controller generator makes specs that do not parse.
961
+ * Cleaned up RSpec on Rails so it doesn't pollute as much during bootstrapping.
962
+ * Added support for response.should_have_tag and response.should_not_have_tag (works just like assert_tag in rails)
963
+ * Added new -c, --colour, --color option for colourful (red/green) output. Inspired from Pat Eyler's Redgreen gem.
964
+ * Added examples for Watir and Selenium under the gem's vendor directory.
965
+ * Renamed rails_spec_runner to rails_spec_server (as referred to in the docs)
966
+ * Added support for trying a plural for arbitrary predicates. E.g. Album.should_exist(:name => "Hey Jude") will call Album.exists?(:name => "Hey Jude")
967
+ * Added support for should_have to work with methods taking args returning a collection. E.g. @dave.should_have(3).albums_i_have_that_this_guy_doesnt(@aslak)
968
+ * Added [#5570] should_not_receive(:msg).with(:specific, "args")
969
+ * Applied [#5065] to support using define_method rather than method_missing to capture expected messages on mocks. Thanks to Eero Saynatkari for the tip that made it work.
970
+ * Restructured directories and Modules in order to separate rspec into three distinct Modules: Spec::Expectations, Spec::Runner and Spec::Mocks. This will allow us to more easily integrate other mock frameworks and/or allow test/unit users to take advantage of the expectation API.
971
+ * Applied [#5620] support any boolean method and arbitrary comparisons (5.should_be < 6) (Patch from Mike Williams)
972
+
973
+ === Version 0.6.3
974
+
975
+ This release fixes some minor bugs related to RSpec on Rails
976
+ Note that if you upgrade a rails app with this version of the rspec_on_rails plugin
977
+ you should remove your lib/tasks/rspec.rake if it exists.
978
+
979
+ * Backtraces from drb (and other standard ruby libraries) are now stripped from backtraces.
980
+ * Applied [#5557] Put rspec.rake into the task directory of the RSpec on Rails plugin (Patch from Daniel Siemssen)
981
+ * Applied [#5556] rails_spec_server loads environment.rb twice (Patch from Daniel Siemssen)
982
+
983
+ === Version 0.6.2
984
+ This release fixes a couple of regressions with the rake task that were introduced in the previous version (0.6.1)
985
+
986
+ * Fixed [#5518] ruby -w: warnings in 0.6.1
987
+ * Applied [#5525] fix rake task path to spec tool for gem-installed rspec (patch from Riley Lynch)
988
+ * Fixed a teensey regression with the rake task - introduced in 0.6.1. The spec command is now quoted so it works on windows.
989
+
990
+ === Version 0.6.1
991
+ This is the "fix the most annoying bugs release" of RSpec. There are 9 bugfixes this time.
992
+ Things that may break backwards compatibility:
993
+ 1) Spec::Rake::SpecTask no longer has the options attribute. Use ruby_opts, spec_opts and rcov_opts instead.
994
+
995
+ * Fixed [#4891] RCOV task failing on windows
996
+ * Fixed [#4896] Shouldn't modify user's $LOAD_PATH (Tip from Gavin Sinclair)
997
+ * Fixed [#5369] ruby -w: warnings in RSpec 0.5.16 (Tip from Suraj Kurapati)
998
+ * Applied [#5141] ExampleMatcher doesn't escape strings before matching (Patch from Nikolai Weibull).
999
+ * Fixed [#5224] Move 'require diff-lcs' from test_helper.rb to diff_test.rb (Tip from Chris Roos)
1000
+ * Applied [#5449] Rake stats for specs (Patch from Nick Sieger)
1001
+ * Applied [#5468, #5058] Fix spec runner to correctly run controller specs (Patch from Daniel Siemssen)
1002
+ * Applied fixes to rails_spec_server to improve its ability to run several times. (Patch from Daniel Siemssen)
1003
+ * Changed RCov::VerifyTask to fail if the coverage is above the threshold. This is to ensure it gets bumped when coverage improves.
1004
+
1005
+ === Version 0.6.0
1006
+ This release makes an official commitment to underscore_syntax (with no more support for dot.syntax)
1007
+
1008
+ * Fixed bug (5292) that caused mock argument matching to fail
1009
+ * Converted ALL tests to use underscore syntax
1010
+ * Fixed all remaining problems with underscores revealed by converting all the tests to underscores
1011
+ * Enhanced sugar to support combinations of methods (i.e. once.and_return)
1012
+ * Simplified helper structure taking advantage of dot/underscore combos (i.e. should.be.an_instance_of, which can be expressed as should be_an_instance_of)
1013
+ * Added support for at_most in mocks
1014
+ * Added support for should_not_receive(:msg) (will be removing should_receive(:msg).never some time soon)
1015
+ * Added support for should_have_exactly(5).items_in_collection
1016
+
1017
+ === Version 0.5.16
1018
+ This release improves Rails support and test2spec translation.
1019
+
1020
+ * Fixed underscore problems that occurred when RSpec was used in Rails
1021
+ * Simplified the Rails support by packaging it as a plugin instead of a generator gem.
1022
+ * Fixed [#5063] 'rspec_on_rails' require line in spec_helper.rb
1023
+ * Added pre_commit rake task to reduce risk of regressions. Useful for RSpec developers and patchers.
1024
+ * Added failure_message to RSpec Rake task
1025
+ * test2spec now defines converted helper methods outside of the setup block (bug #5057).
1026
+
1027
+ === Version 0.5.15
1028
+ This release removes a prematurely added feature that shouldn't have been added.
1029
+
1030
+ * Removed support for differences that was added in 0.5.14. The functionality is not aligned with RSpec's vision.
1031
+
1032
+ === Version 0.5.14
1033
+ This release introduces better ways to extend specs, improves some of the core API and
1034
+ a experimental support for faster rails specs.
1035
+
1036
+ * Added proc methods for specifying differences (increments and decrements). See difference_test.rb
1037
+ * Methods can now be defined alongside specs. This obsoletes the need for defining methods in setup. (Patch #5002 from Brian Takita)
1038
+ * Sugar (underscores) now works correctly with should be_a_kind_of and should be_an_instance_of
1039
+ * Added support for include and inherit in contexts. (Patch #4971 from Brian Takita)
1040
+ * Added rails_spec and rails_spec_server for faster specs on rails (still buggy - help needed)
1041
+ * Fixed bug that caused should_render to break if given a :symbol (in Rails)
1042
+ * Added support for comparing exception message in should_raise and should_not_raise
1043
+
1044
+ === Version 0.5.13
1045
+ This release fixes some subtle bugs in the mock API.
1046
+
1047
+ * Use fully-qualified class name of Exceptions in failure message. Easier to debug that way.
1048
+ * Fixed a bug that caused mocks to yield a one-element array (rather than the element) when one yield arg specified.
1049
+ * Mocks not raise AmbiguousReturnError if an explicit return is used at the same time as an expectation block.
1050
+ * Blocks passed to yielding mocks can now raise without causing mock verification to fail.
1051
+
1052
+ === Version 0.5.12
1053
+ This release adds diff support for failure messages, a HTML formatter plus some other
1054
+ minor enhancements.
1055
+
1056
+ * Added HTML formatter.
1057
+ * Added fail_on_error option to spectask.
1058
+ * Added support for diffing, using the diff-lcs Rubygem (#2648).
1059
+ * Remove RSpec on Rails files from backtrace (#4694).
1060
+ * All of RSpec's own tests run successfully after translation with test2spec.
1061
+ * Added --verbose mode for test2spec - useful for debugging when classes fail to translate.
1062
+ * Output of various formatters is now flushed - to get more continuous output.
1063
+
1064
+ === Version 0.5.11
1065
+ This release makes test2spec usable with Rails (with some manual steps).
1066
+ See http://rspec.rubyforge.org/tools/rails.html for more details
1067
+
1068
+ * test2spec now correctly translates bodies of helper methods (non- test_*, setup and teardown ones).
1069
+ * Added more documentation about how to get test2spec to work with Rails.
1070
+
1071
+ === Version 0.5.10
1072
+ This version features a second rewrite of test2spec - hopefully better than the previous one.
1073
+
1074
+ * Improved test2spec's internals. It now transforms the syntax tree before writing out the code.
1075
+
1076
+ === Version 0.5.9
1077
+ This release improves test2spec by allowing more control over the output
1078
+
1079
+ * Added --template option to test2spec, which allows for custom output driven by ERB
1080
+ * Added --quiet option to test2spec
1081
+ * Removed unnecessary dependency on RubyToC
1082
+
1083
+ === Version 0.5.8
1084
+ This release features a new Test::Unit to RSpec translation tool.
1085
+ Also note that the RubyGem of the previous release (0.5.7) was corrupt.
1086
+ We're close to being able to translate all of RSpec's own Test::Unit
1087
+ tests and have them run successfully!
1088
+
1089
+ * Updated test2spec documentation.
1090
+ * Replaced old test2rspec with a new test2spec, which is based on ParseTree and RubyInline.
1091
+
1092
+ === Version 0.5.7
1093
+ This release changes examples and documentation to recommend underscores rather than dots,
1094
+ and addresses some bugfixes and changes to the spec commandline.
1095
+
1096
+ * spec DIR now works correctly, recursing down and slurping all *.rb files
1097
+ * All documentation and examples are now using '_' instead of '.'
1098
+ * Custom external formatters can now be specified via --require and --format.
1099
+
1100
+ === Version 0.5.6
1101
+ This release fixes a bug in the Rails controller generator
1102
+
1103
+ * The controller generator did not write correct source code (missing 'do'). Fixed.
1104
+
1105
+ === Version 0.5.5
1106
+ This release adds initial support for Ruby on Rails in the rspec_generator gem.
1107
+
1108
+ * [Rails] Reorganised Lachie's original code to be a generator packaged as a gem rather than a plugin.
1109
+ * [Rails] Imported code from http://lachie.info/svn/projects/rails_plugins/rspec_on_rails (Written by Lachie Cox)
1110
+ * Remove stack trace lines from TextMate's Ruby bundle
1111
+ * Better error message from spectask when no spec files are found.
1112
+
1113
+ === Version 0.5.4
1114
+ The "the tutorial is ahead of the gem" release
1115
+
1116
+ * Support for running a single spec with --spec
1117
+ * Exitcode is now 1 unless all specs pass, in which case it's 0.
1118
+ * -v, --version now both mean the same thing
1119
+ * For what was verbose output (-v), use --format specdoc or -f s
1120
+ * --format rdoc always runs in dry-run mode
1121
+ * Removed --doc and added --format and --dry-run
1122
+ * Refactored towards more pluggable formatters
1123
+ * Use webgen's execute tag when generating website (more accurate)
1124
+ * Fixed incorrect quoting of spec_opts in SpecTask
1125
+ * Added patch to enable underscored shoulds like 1.should_equal(1) - patch from Rich Kilmer
1126
+ * Removed most inherited instance method from Mock, making more methods mockable.
1127
+ * Made the RCovVerify task part of the standard toolset.
1128
+ * Documented Rake task and how to use it with Rcov
1129
+ * Implemented <ruby></ruby> tags for website (hooking into ERB, RedCloth and syntax)
1130
+ * RSpec Rake task now takes spec_opts and out params so it can be used for doc generation
1131
+ * RCov integration for RSpec Rake task (#4058)
1132
+ * Group all results instead of printing them several times (#4057)
1133
+ * Mocks can now yield
1134
+ * Various improvements to error reporting (including #4191)
1135
+ * backtrace excludes rspec code - use -b to include it
1136
+ * split examples into examples (passing) and failing_examples
1137
+
1138
+ === Version 0.5.3
1139
+ The "hurry up, CoR is in two days" release.
1140
+
1141
+ * Don't run rcov by default
1142
+ * Make separate task for running tests with RCov
1143
+ * Added Rake task to fail build if coverage drops below a certain threshold
1144
+ * Even more failure output cleanup (simplification)
1145
+ * Added duck_type constraint for mocks
1146
+
1147
+ === Version 0.5.2
1148
+ This release has minor improvements to the commandline and fixes some gem warnings
1149
+
1150
+ * Readded README to avoid RDoc warnings
1151
+ * Added --version switch to commandline
1152
+ * More changes to the mock API
1153
+
1154
+ === Version 0.5.1
1155
+ This release is the first release of RSpec with a new website. It will look better soon.
1156
+
1157
+ * Added initial documentation for API
1158
+ * Added website based on webgen
1159
+ * Modified test task to use rcov
1160
+ * Deleted unused code (thanks, rcov!)
1161
+ * Various changes to the mock API,
1162
+ * Various improvements to failure reporting
1163
+
1164
+ === Version 0.5.0
1165
+ This release introduces a new API and obsolesces previous versions.
1166
+
1167
+ * Moved source code to separate subfolders
1168
+ * Added new DSL runner based on instance_exec
1169
+ * Added spike for testdox/rdoc generation
1170
+ * merge Astels' and Chelimsky's work on ShouldHelper
1171
+ * this would be 0.5.0 if I updated the documentation
1172
+ * it breaks all of your existing specifications. We're not sorry.
1173
+
1174
+ === Version 0.3.2
1175
+
1176
+ The "srbaker is an idiot" release.
1177
+
1178
+ * also forgot to update the path to the actual Subversion repository
1179
+ * this should be it
1180
+
1181
+ === Version 0.3.1
1182
+
1183
+ This is just 0.3.0, but with the TUTORIAL added to the documentation list.
1184
+
1185
+ * forgot to include TUTORIAL in the documentation
1186
+
1187
+ === Version 0.3.0
1188
+
1189
+ It's been a while since last release, lots of new stuff is available. For instance:
1190
+
1191
+ * improvements to the runners
1192
+ * addition of should_raise expectation (thanks to Brian Takita)
1193
+ * some documentation improvements
1194
+ * RSpec usable as a DSL
1195
+
1196
+ === Version 0.2.0
1197
+
1198
+ This release provides a tutorial for new users wishing to get started with
1199
+ RSpec, and many improvements.
1200
+
1201
+ * improved reporting in the spec runner output
1202
+ * update the examples to the new mock api
1203
+ * added TUTORIAL, a getting started document for new users of RSpec
1204
+
1205
+ === Version 0.1.7
1206
+
1207
+ This release improves installation and documentation, mock integration and error reporting.
1208
+
1209
+ * Comparison errors now print the class name too.
1210
+ * Mocks now take an optional +options+ parameter to specify behaviour.
1211
+ * Removed __expects in favour of should_receive
1212
+ * Added line number reporting in mock error messages for unreceived message expectations.
1213
+ * Added should_match and should_not_match.
1214
+ * Added a +mock+ method to Spec::Context which will create mocks that autoverify (no need to call __verify).
1215
+ * Mocks now require names in the constructor to ensure sensible error messages.
1216
+ * Made 'spec' executable and updated usage instructions in README accordingly.
1217
+ * Made more parts of the Spec::Context API private to avoid accidental usage.
1218
+ * Added more RDoc to Spec::Context.
1219
+
1220
+ === Version 0.1.6
1221
+
1222
+ More should methods.
1223
+
1224
+ * Added should_match and should_not_match.
1225
+
1226
+ === Version 0.1.5
1227
+
1228
+ Included examples and tests in gem.
1229
+
1230
+ === Version 0.1.4
1231
+
1232
+ More tests on block based Mock expectations.
1233
+
1234
+ === Version 0.1.3
1235
+
1236
+ Improved mocking:
1237
+
1238
+ * block based Mock expectations.
1239
+
1240
+ === Version 0.1.2
1241
+
1242
+ This release adds some improvements to the mock API and minor syntax improvements
1243
+
1244
+ * Added Mock.should_expect for a more consistent DSL.
1245
+ * Added MockExpectation.and_returns for a better DSL.
1246
+ * Made Mock behave as a null object after a call to Mock.ignore_missing
1247
+ * Internal syntax improvements.
1248
+ * Improved exception trace by adding exception class name to error message.
1249
+ * Renamed some tests for better consistency.
1250
+
1251
+ === Version 0.1.1
1252
+
1253
+ This release adds some shoulds and improves error reporting
1254
+
1255
+ * Added should be_same_as and should_not be_same_as.
1256
+ * Improved error reporting for comparison expectations.
1257
+
1258
+ === Version 0.1.0
1259
+
1260
+ This is the first preview release of RSpec, a Behaviour-Driven Development library for Ruby
1261
+
1262
+ * Added Rake script with tasks for gems, rdoc etc.
1263
+ * Added an XForge task to make release go easier.