autotest 4.1.4

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