ryanbriones-ZenTest 3.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/History.txt +523 -0
  2. data/Manifest.txt +69 -0
  3. data/README.txt +110 -0
  4. data/Rakefile +68 -0
  5. data/articles/Article.css +721 -0
  6. data/articles/getting_started_with_autotest.html +532 -0
  7. data/articles/how_to_use_zentest.txt +393 -0
  8. data/bin/autotest +55 -0
  9. data/bin/multiruby +40 -0
  10. data/bin/multiruby_setup +68 -0
  11. data/bin/rails_test_audit +80 -0
  12. data/bin/unit_diff +38 -0
  13. data/bin/zentest +28 -0
  14. data/example.txt +42 -0
  15. data/example1.rb +7 -0
  16. data/example2.rb +15 -0
  17. data/example_dot_autotest.rb +45 -0
  18. data/lib/autotest.rb +654 -0
  19. data/lib/autotest/autoupdate.rb +26 -0
  20. data/lib/autotest/camping.rb +37 -0
  21. data/lib/autotest/cctray.rb +57 -0
  22. data/lib/autotest/discover.rb +6 -0
  23. data/lib/autotest/emacs.rb +35 -0
  24. data/lib/autotest/email_notify.rb +66 -0
  25. data/lib/autotest/fixtures.rb +12 -0
  26. data/lib/autotest/growl.rb +28 -0
  27. data/lib/autotest/heckle.rb +14 -0
  28. data/lib/autotest/html_report.rb +31 -0
  29. data/lib/autotest/jabber_notify.rb +111 -0
  30. data/lib/autotest/kdenotify.rb +14 -0
  31. data/lib/autotest/menu.rb +51 -0
  32. data/lib/autotest/migrate.rb +7 -0
  33. data/lib/autotest/notify.rb +34 -0
  34. data/lib/autotest/once.rb +9 -0
  35. data/lib/autotest/pretty.rb +83 -0
  36. data/lib/autotest/rails.rb +81 -0
  37. data/lib/autotest/rcov.rb +22 -0
  38. data/lib/autotest/redgreen.rb +21 -0
  39. data/lib/autotest/restart.rb +11 -0
  40. data/lib/autotest/screen.rb +73 -0
  41. data/lib/autotest/shame.rb +45 -0
  42. data/lib/autotest/snarl.rb +51 -0
  43. data/lib/autotest/timestamp.rb +9 -0
  44. data/lib/functional_test_matrix.rb +92 -0
  45. data/lib/multiruby.rb +401 -0
  46. data/lib/test/rails.rb +295 -0
  47. data/lib/test/rails/controller_test_case.rb +382 -0
  48. data/lib/test/rails/functional_test_case.rb +79 -0
  49. data/lib/test/rails/helper_test_case.rb +64 -0
  50. data/lib/test/rails/ivar_proxy.rb +31 -0
  51. data/lib/test/rails/pp_html_document.rb +74 -0
  52. data/lib/test/rails/rake_tasks.rb +50 -0
  53. data/lib/test/rails/render_tree.rb +93 -0
  54. data/lib/test/rails/test_case.rb +28 -0
  55. data/lib/test/rails/view_test_case.rb +597 -0
  56. data/lib/test/zentest_assertions.rb +134 -0
  57. data/lib/unit_diff.rb +259 -0
  58. data/lib/zentest.rb +566 -0
  59. data/lib/zentest_mapping.rb +99 -0
  60. data/test/test_autotest.rb +449 -0
  61. data/test/test_help.rb +36 -0
  62. data/test/test_rails_autotest.rb +229 -0
  63. data/test/test_rails_controller_test_case.rb +58 -0
  64. data/test/test_rails_helper_test_case.rb +48 -0
  65. data/test/test_rails_view_test_case.rb +275 -0
  66. data/test/test_unit_diff.rb +319 -0
  67. data/test/test_zentest.rb +566 -0
  68. data/test/test_zentest_assertions.rb +128 -0
  69. data/test/test_zentest_mapping.rb +222 -0
  70. metadata +151 -0
data/History.txt ADDED
@@ -0,0 +1,523 @@
1
+ === 3.11.0 / 2008-07-03
2
+
3
+ * 10 minor enhancements:
4
+
5
+ * Added git support.
6
+ * Added rbx:ln:$dir and rbx:git:current.
7
+ * Added rubygems:merge as a nice little hack to share rubygems setups.
8
+ * Added svn tag updating (eg will svn sw from mri 1.8.6 222 to 1.8.6 231).
9
+ * Made it possible to have manually specified tags.
10
+ * Made multiruby a little more self-repairing wrt symlinks and build dirs.
11
+ * Refactored into mri_latest_tag(v).
12
+ * Removed rubinius specific symlink hacks, now fully supported.
13
+ * mri:svn:releases figures out all the latest patch levels.
14
+ * multiruby_setup help now exits instead of building.
15
+ * multiruby_setup list and clean now exit
16
+ * multiruby_setup clean now checks for rakefile first, since rbx has both. :(
17
+
18
+ * 2 bug fixes:
19
+
20
+ * Fixed bug in mri:svn:branch:xxx with svn dir name.
21
+ * multiruby_setup rm now smarter about tarballs.
22
+
23
+ === 3.10.0 / 2008-06-17
24
+
25
+ * 1 major enhancement:
26
+
27
+ * Added multiruby_setup to help manage multiruby installed versions.
28
+
29
+ * 3 minor enhancements:
30
+
31
+ * Added autotest/once plugin to help plugin developers.
32
+ * Heavily refactored multiruby.
33
+ * Switched rubinius from shotgun/rubinius to bin/rbx, finally.
34
+
35
+ * 2 bug fixes:
36
+
37
+ * Refactored zentest_mapping test to avoid zentest altogether.
38
+ * zentest tests bail gracefully for rubinius.
39
+
40
+ === 3.9.3 / 2008-06-09
41
+
42
+ * 12 minor enhancements:
43
+
44
+ * Added $RUBY env support to autotest so you can swap what ruby to run.
45
+ * Added ALL_HOOKS array to autotest for hook devs.
46
+ * Added EXCLUDED_VERSIONS to multiruby. Integrated with hoe.
47
+ * Added miniunit compatibility to unit_diff's output.
48
+ * Multiruby now determines the latest versions 1.8/1.9 automatically.
49
+ * Removed deprecated :run hook.
50
+ * Fixed zentest_assertions to be compatible with miniunit. Will phase out.
51
+ * Minor autotest plugin cleanup / fixes.
52
+ * Moved assert_callback to test/rails/test_case.rb
53
+ * Reversed assert_includes' arguments.
54
+ * Updated requirements info for other ruby impls.
55
+ * util_capture now returns strings, not iostrings.
56
+
57
+ * 1 bug fixes:
58
+
59
+ * (add|remove)_(mappings|exceptions) now all return nil to help fix autotest hooks.
60
+
61
+ === 3.9.2 / 2008-03-20
62
+
63
+ * 4 minor enhancements:
64
+
65
+ * Added compatibility with miniunit differences.
66
+ * Added email_notify, jabber_notify, and rcov autotest plugins.
67
+ * Updated rakefile to include examples automatically in example_dot_autotest.
68
+ * multiruby now outputs each command so you can grab it easily.
69
+
70
+ * 5 bug fixes:
71
+
72
+ * Ensure tests are run after reset.
73
+ * Fixed all test/rails tests to run in any combo.
74
+ * Fixed up growl.rb a bit... still buggy (growlnotify, not growl.rb).
75
+ * Fixes for -f (fast start) and last_mtime in general.
76
+ * Fixes for 1.9 and rubinius
77
+
78
+ === 3.9.1 / 2008-01-31
79
+
80
+ * 1 bug fix:
81
+
82
+ * OMG I'm so dumb... fixed memory leak.
83
+
84
+ === 3.9.0 / 2008-01-30
85
+
86
+ * 15 minor enhancements:
87
+
88
+ * Added Wilson's patch to allow unit_diff to work with mspec. Adding rspec next.
89
+ * Minor overhaul for autotest:
90
+ * Added -f flag to start up without testing.
91
+ * Added -q flag to autotest to make it extra quiet. Patch by Aaron Patterson.
92
+ * Added ability to set test execution order, defaults to :random. EVIL!
93
+ * Added completed_re and failed_results_re to help subclasses like rspec.
94
+ * Added deprecation warnings for hooks. Deprecated :run.
95
+ * Added find_directories accessor, defaults to ['.']
96
+ * Added sleep accessor, defaults to 1 second.
97
+ * Changed find_files to order files in the same order as find_directories.
98
+ * Changed how autodiscover works with $:, added lib to the front.
99
+ * Cleaned out nearly every @ and use accessor methods instead. You should too.
100
+ * Made test_mappings ordered.
101
+ * Removed @files, adding @find_order and @known_files.
102
+ * Renamed tests_for_file to test_files_for.
103
+ * test_files_for now only returns known files.
104
+
105
+ === 3.8.0 / 2008-01-12
106
+
107
+ * 10 minor enhancements:
108
+
109
+ * Added basic support for rubinius in multiruby.
110
+ * Changed Dunno! message to only output on -v
111
+ * Added Getting Started with Autotest by Philippe Hanrigou (with permission)
112
+ * Updated example_dot_autotest.rb for newer plugins.
113
+ * Cleaned up rdoc.
114
+ * Worked with David Chelimsky to make Autotest more uber for subclasses.
115
+ * Removed exceptions and test_mappings accessors and replaced with add/remove/clear methods. Updating .autotest should be very straightforward.
116
+ * Moved :initialize hook to beginning of run method
117
+ * Changed load/customization order to be:
118
+ * Autotest
119
+ * AutotestSubClass
120
+ * ~/.autotest
121
+ * ./.autotest (yes, both .autotest files).
122
+ * Moved away from using instance variables to encourage subclasses to use accessors.
123
+
124
+ === 3.7.2 / 2008-01-09
125
+
126
+ * 2 minor enhancements:
127
+
128
+ * Extended file map for tests to include subdirs correctly.
129
+ * Added debugging output on bad maps if -v set.
130
+
131
+ === 3.7.1 / 2007-12-27
132
+
133
+ * 2 minor enhancements:
134
+
135
+ * multiruby now downloads 1.8.6 and 1.9 on virgin run.
136
+ * Improved output for the downloads.
137
+
138
+ === 3.7.0 / 2007-12-21
139
+
140
+ * 8 minor enhancements:
141
+
142
+ * Added add_mapping to make file mappings cleaner.
143
+ * Added assert_callback thanks to Aaron Patterson.
144
+ * Added autotest/cctray.
145
+ * Added extra_files and extra_class_map, allowing .autotest files to be awesome.
146
+ * Added url for lettuce principal thanks to Hugh Sasse.
147
+ * Added zentest.rb refactorings thanks to Hugh Sasse.
148
+ * Exceptions are now an array of regexps, built after :initialize hook.
149
+ * Removed ruby_fork and ruby_fork_client. Eric got a faster laptop. :P
150
+
151
+ * 6 bug fixes:
152
+
153
+ * Fixed all my annoyances with @exceptions.
154
+ * Fixed crasher in autotest/redgreen for non-matches.
155
+ * Fixed everything to work with ruby 1.9.
156
+ * Fixed rubygem requires causing strangeness in tests.
157
+ * Fixed zentest mapping so ruby2ruby and test_ruby2ruby work.
158
+ * Removed stupid YAML methods from TrueClass during
159
+ testing. (Infected by Test::Rails' use of rubygems)
160
+
161
+ === 3.6.1 / 2007-07-23
162
+
163
+ * 4 minor enhancements:
164
+
165
+ * Test::Rails::ViewTestCase now uses assert_select.
166
+ * assert_form and friends now work with blocks like assert_select
167
+ does.
168
+ * Allow path_parameters in view tests to be ammended, making working
169
+ with routes easier.
170
+ * New version of autotest/notify.rb uses notify-send.
171
+ * Fixed rdoc formatting on autotest and a couple plugins.
172
+
173
+ === 3.6.0 / 2007-05-25
174
+
175
+ * 4 major enhancements:
176
+
177
+ * New auto-discovery mechanism to make rspec and friends work independently!
178
+ * Moved and restructured camping and rails as plugins.
179
+ * Removed rspec - now packaged with rspec and/or as plugin.
180
+ * Changed the way FTM tests are named. Allows multiple matricies.
181
+
182
+ * 3 minor enhancements:
183
+
184
+ * Added :OK special result value to FTM.
185
+ * Hugh Sasse is awesome. Rdoc happiness.
186
+ * Parameterized emacs client command.
187
+
188
+ * 3 bug fixes:
189
+
190
+ * Dup load path because I'm dum.
191
+ * Fixed a lame syntax error in emacs.rb.
192
+ * autotest now builds command separator with '&' on windoze. ARGH! Why is this the first I've heard of this?!?
193
+
194
+ === 3.5.2 / 2007-04-30
195
+
196
+ * 4 bug fixes:
197
+
198
+ * Patch up Rails fixture defaults for Test::Rails::TestCase.
199
+ * Session now properly hooked up to controllers.
200
+ * ruby 1.8.6 has a bug on 'raise Interrupt' with no args. Fixed on both sides.
201
+ * Fixed redgreen to work with new getc/putc-based output. (from Finn Smith)
202
+
203
+ === 3.5.1 / 2007-04-17
204
+
205
+ * 4 bug fixes:
206
+
207
+ * Fixed gem name to be camel-case again. Fixed on rubyforge too.
208
+ * Fixed rdoc for hooks.
209
+ * Fixed redgreen, results changed to an array.
210
+ * Patch up Rails fixture defaults, since they're not inheriting properly.
211
+
212
+ === 3.5.0 / 2007-04-12
213
+
214
+ * 4 major enhancements:
215
+
216
+ * Now requires RubyGems 0.9.1 or newer.
217
+ * Autotest and unit_diff are both unbuffered. Results are more live.
218
+ * Refactored and redesigned how files map to test from Sean Carley. See fixtures plugin as an example.
219
+ * Generalize how autotest handler is instantiated and invoked, allowing for many more autotest types, including combos.
220
+
221
+ * 23 minor enhancements:
222
+
223
+ * Added all_good hook if initial run was all_good as well.
224
+ * Added assert_in_epsilon to ZentestAssertions.
225
+ * Added autotest plugin to auto-update source ala tinderbox/cruisecontrol.
226
+ * Added autotest plugin to update ichat/adium IM status with code stats.
227
+ * Added autotest plugin to update the GNU screen statusbar from Yuichi Tateno.
228
+ * Added autotest syntax error handling from Ryan Platte.
229
+ * Added autotest/emacs emacs integration plugin!!! YAY!
230
+ * Added autotest/migrate.rb.
231
+ * Added camping support from Geoffrey Grossenbach.
232
+ * Added changed file reporting to autotest via -v flag.
233
+ * Added informative summary and filtering via ENV['VERSIONS'] to multiruby.
234
+ * Added libnotify support from Kazuo Saito.
235
+ * Added lots of rdoc patches from Hugh Sasse.
236
+ * Added rjs files to view_test_case.
237
+ * Added rspec_autotest "stolen" from caldersphere.net
238
+ * Added run_command hook to trigger the start of a test run.
239
+ * Added tmp to rails' exceptions list.
240
+ * Added unit_diff command variable to autotest for customizing flags and such.
241
+ * Added zentest_mapping.rb and test.
242
+ * Allow session to work in Test::Rails view tests.
243
+ * Improved autotest/growl.rb output from imajes.
244
+ * Improved autotest/timestamp output from Josh Susser.
245
+ * Test::Rails works with Rails 1.2.
246
+
247
+ * 2 bug fixes:
248
+
249
+ * Accelerated Test::Rails unit tests via sensible defaults.
250
+ * Better assertion messages for ZentestAssertions.
251
+
252
+ === 3.4.3 / 2006-12-19
253
+
254
+ * 2 minor enhancements:
255
+
256
+ * Add assert_title and assert_h (for header).
257
+
258
+ * 2 bug fixes:
259
+
260
+ * Rereleased against latest version of hoe to fix load path problems.
261
+ * Fix case ViewTestCase for case-sensitive file systems.
262
+
263
+ === 3.4.2 / 2006-11-09
264
+
265
+ * 2 minor enhancements:
266
+
267
+ * Add TextHelper for pluralize.
268
+ * Add deny_nil to Test::Rails.
269
+
270
+ * 7 bug fixes:
271
+
272
+ * Fixed test_help's Flash. It's is a module. Oops...
273
+ * Don't run util_audit_assert_assigned if tests didn't pass, results will be bogus.
274
+ * Fixed AssertionsTest names to match what autotest expects.
275
+ * Fixed bug where deny_includes failed for Symbol keys.
276
+ * Switched autotest to use require instead of load... Why??? I don't know!!
277
+ * Fixed a minor but annoying whitespace difference in unit_diff.
278
+ * Switched argument order of assert_includes and deny_includes to match Test::Unit convention.
279
+
280
+ === 3.4.1 / 2006-10-13
281
+
282
+ * 3 minor enhancements:
283
+
284
+ * FUNDAMENTALLY changed the way failures map back to tests. This REQUIRES users of autotest to ensure that their tests and impls map 1:1 at every scoping level. I'll blog more details.
285
+ * Hoe'd rakefile
286
+ * Added support for render :collection to RenderTree.
287
+
288
+ * 7 bug fixes:
289
+
290
+ * Fixed autotest tests for custom ruby names.
291
+ * Fixed some documentation errors in ControllerTestCase.
292
+ * Fixed setup in FunctionalTestCase.
293
+ * Allowed @assigns_ignored to contain either Symbols or Strings, bug 5233.
294
+ * Using Object.path2class to look up classes in helper test cases, bug 5493.
295
+ * Added assert_text_area, bug 5452.
296
+ * Renamed assert_select to assert_select_tag. Stupid rails. We were here first.
297
+
298
+ === 3.4.0 / 2006-09-12
299
+
300
+ * 13 minor enhancements:
301
+
302
+ * Broke out example_dot_autotest into multiple files in lib.
303
+ * Enhanced hook system so it can return true if event handled.
304
+ * Sleep is now 1 second by default because life is too short.
305
+ * Hooked interrupt with new hook system. First handler wins.
306
+ * Hooked test results before output
307
+ * Accurate test counts for Test::Rails.
308
+ * Added snarl autotest plugin, thanks to Patrick Hurley.
309
+ * Added timestamp autotest plugin, thanks to Joe Goldberg.
310
+ * Added redgreen, thanks to Pat Eyler, Sean Carley, and Rob Sanheim.
311
+ * Added kdenotify autotest plugin, thanks to Geir Freysson.
312
+ * Added markaby support for Test::Rails.
313
+ * Added hack to display a tree of render calls.
314
+ * Added hook to perform extra setup for
315
+
316
+ * 5 bug fixes:
317
+
318
+ - Extended zentest to deal with rails a bit better... ugh.
319
+ - Fixed @libs for windoze.
320
+ - Fixed inner class/test identification in autotest.
321
+ - Namespaced all plugins... eric is anal.
322
+ - No longer freak out if rubygems tarball not in multiruby/versions.
323
+
324
+ === 3.3.0 / 2006-07-28
325
+
326
+ * 1 major enhancement:
327
+
328
+ * autotest has been rewritten to be much cleaner, now has a plugin system.
329
+
330
+ * 5 minor enhancements:
331
+
332
+ * test/rails adds helper tests, "stolen" from Geoff's work, (which was "stolen" from ryan's work. :P)
333
+ * autotest turnaround is now faster.
334
+ * Added more prune dirs to autotest.
335
+ * test/rails rewinds IOs containing captured output. Added assert_empty.
336
+ * Document that autotest doesn't run the db:test:prepare rake task when in Rails mode.
337
+ * Added ruby_fork, but haven't fully plugged into autotest yet.
338
+
339
+ * 7 bug fixes:
340
+
341
+ * Add SIGINT handler to unit_diff to give a more graceful exit.
342
+ * Don't strip <> from tempfiles, parse_diff does it for us.
343
+ * Fixed autotest problems on windoze. Ugh.
344
+ * Fixed broken pipe bug and newline bug in unit_diff.
345
+ * Make request_method in ControllerTestCase a String.
346
+ * multitest installs rubygems if tarball found in versions dir.
347
+ * multitest only configures when makefile is missing. Rebuilds much faster now.
348
+ * ruby_fork exits without backtrace and allows redirection of output.
349
+
350
+ === 3.2.0 / 2006-04-10
351
+
352
+ * 1 major enhancement:
353
+
354
+ * Added Test::Rails.
355
+
356
+ * 1 minor enhancement:
357
+
358
+ * Extended autotest for Test::Rails.
359
+
360
+ * 4 bug fixes:
361
+
362
+ * Autotest now detects changes in rhtml.
363
+ * Improved autotest's file mapping and choice of ruby.
364
+ * We've got RDoc, yes we do!
365
+ * Removed redundancies in rakefile. Using gem spec for most stuff now.
366
+
367
+ === 3.1.0 / 2006-03-29
368
+
369
+ * 2 major enhancements:
370
+
371
+ * Added multiruby! YAY!
372
+ * Massive improvements to autotest: speed, reliability, reporting, etc.
373
+
374
+ * 10 minor enhancements:
375
+
376
+ * multiruby builds in a centralized location. YAY!
377
+ * multiruby now allows reinstalls quickly and easily (can even skip config).
378
+ * multiruby exits with total sum of exit codes.
379
+ * autotest file search is muuuuch faster.
380
+ * autotest automatically detects rails mode.
381
+ * autotest deals with rails dependencies much better.
382
+ * autotest reruns a full suite after you go green to ensure full coverage.
383
+ * autotest always runs with unit_diff -u.
384
+ * autotest can now run cvs/svn/p4 up periodically to be a mini-tinderbox.
385
+ * autotest now has real help.
386
+
387
+ * 4 bug fixes:
388
+
389
+ * ZenTest is now zentest. Yay for consistency! (do a rake uninstall to clean)
390
+ * ZenTest excludes pretty_print methods.
391
+ * Fixed unary operator issues (they were backwards... oops!) for ZenTest.
392
+ * unit_diff now runs diff.exe on Windoze. dunno if that will work.
393
+
394
+ === 3.0.0 / 2006-03-06
395
+
396
+ * 2 major enhancements:
397
+
398
+ * Added autotest and rails_autotest. YAY for continous testing!
399
+ * Repackaged and gemified. YAY for gemification!
400
+
401
+ * 3 minor enhancements:
402
+
403
+ * Added non-mappable tests starting with test_integration_.
404
+ * Lots of code and test refactoring and cleanup.
405
+ * Massive improvement on unit tests.
406
+
407
+ * 3 bug fixes:
408
+
409
+ * Cleaned up class method inheritence. Esp relevant for rails testing.
410
+ * Finally fixed the unit_diff parse bug!
411
+ * Fixed improper counting of errors if a class was missing, should be 1 + missing methods.
412
+
413
+ === 2.4.0 / 2005-03-21
414
+
415
+ * 3 minor enhancements:
416
+
417
+ * Able to audit standard class library (so now we can audit rubicon!).
418
+ * Able to map against class methods (self.blah <=> test_class_blah).
419
+ * Added -I=rubypath support
420
+
421
+ * 4 bug fixes:
422
+
423
+ * bug:1151 Fixed stupid problem w/ unit_diff.
424
+ * bug:1454 code generation correctly matches class/module for nested classes.
425
+ * bug:1455 Updated method mapping to work on all operators listed in my quickref.
426
+ * Realized I'm a moron and did NOT release in March like I thought...
427
+
428
+ === 2.3.0 / 2004-11-18
429
+
430
+ * 6 minor enhancements:
431
+
432
+ * Massively expanded the method name mappings.
433
+ * Added -r flag to reverse map names, for Rails style testing.
434
+ * Added -e to auto eval tests generated.
435
+ * Added -b & -c flags in unit_diff (passed to diff)
436
+ * Added install and uninstall rules to Makefile.
437
+ * Added some more doco to README.txt
438
+
439
+ * 7 bug fixes:
440
+
441
+ * Cleaned up and refactored tests.
442
+ * Changed the way files are generated, to accomodate new flags.
443
+ * Added some more tests.
444
+ * Added $ZENTEST=true
445
+ * Fixed the one-liner diff bug.
446
+ * Cleaned up multi-line string diffs by unescaping \n
447
+ * Cleaned result for flunks.
448
+
449
+ === 2.2.0 / 2004-10-18
450
+
451
+ * 4 minor enhancements:
452
+
453
+ * Added LinuxJournalArticle.txt! WOOT!
454
+ * Added unit_diff.rb - a very cool filter for test output!
455
+ * Extended ZenTest to work with standard input
456
+ * Added "ZenTest FULL" to force ZenTest to analyze inherited methods, for subclasses of the standard library.
457
+
458
+ * 3 bug fixes:
459
+
460
+ * Extended makefile to be more dynamic and stop diffing versions. ugh.
461
+ * Expanded the method rename map to handle <<, *, +, and ==.
462
+ * Added more test cases.
463
+
464
+ === 2.1.2 / 2004-03-08
465
+
466
+ * 4 bug fixes:
467
+
468
+ * Fixed yet another 1.8ism, results will be the same in 1.8 and 1.6.
469
+ * Fixed code responsible for method name conversion.
470
+ * I am a moron... didn't run tests after updating version.
471
+ * Need to convert my diff-based tests to unit tests.
472
+
473
+ === 2.1.1 / 2004-03-06
474
+
475
+ * 3 bug fixes:
476
+
477
+ * Fixed a 1.8ism.
478
+ * Removed zentestrunner. Older ruby users will just have to suffer.
479
+ * Updated history to ZenWeb format.
480
+
481
+ === 2.1.0 / 2003-01-07
482
+
483
+ * 3 major enhancements:
484
+
485
+ * Output is runnable as-is thanks to zentestrunner.rb.
486
+ * Wrapped up all running functionality into ZenTest.fix
487
+ * Added simple statistic output... Thanks Dave & Andy!!!
488
+
489
+ * 2 minor enhancements:
490
+
491
+ * Added zentestrunner.rb until Nathaniel accepts my changes!
492
+ * Added a clean rule to Makefile
493
+
494
+ * 3 bug fixes:
495
+
496
+ * Removed at_exit override and avoided test/unit altogether.
497
+ * Extended README.txt to include some of the rules.
498
+ * Fixed several tests and added assertions for new stats
499
+
500
+ === 2.0.0 / 2002-10-29
501
+
502
+ * 2 major enhancements:
503
+
504
+ * Rewrite of ZenTest.rb into actual OO design.
505
+ * Added unit tests, finally...
506
+
507
+ === 1.0.1 / 2002-09-28
508
+
509
+ * 1 minor enhancement:
510
+
511
+ * Only loads when a class is detected, allows some scripts to be skipped.
512
+
513
+ * 3 bug fixes:
514
+
515
+ * Cleaned up output. Verbose when $DEBUG is true.
516
+ * Added an error count that is output at end.
517
+ * Better filtering or conversion on some method names.
518
+
519
+ === 1.0.0 / 2002-09-24
520
+
521
+ * 1 major enhancement:
522
+
523
+ * Birthday!