Assimilate Test-Simple 0.50
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / Changes
1 0.50  Sat Nov 20 00:28:44 EST 2004
2     * Fixed bug in fail-more test on Windows (not a real bug).
3       [rt.cpan.org 8022]
4     - Change from CVS to SVK.  Hopefully this is the last version control
5       system change.
6     - Again removing File::Spec dependency (came back in 0.48_02)
7     - Change from Aegis back to CVS
8
9 0.49  Thu Oct 14 21:58:50 EDT 2004
10     - t/harness_active.t would fail for frivolous reasons with older
11       MakeMakers (test bug) [thanks Bill Moseley for noticing]
12
13 0.48_02  Mon Jul 19 02:07:23 EDT 2004
14     * Overloaded objects as names now won't blow up under threads
15       [rt.cpan.org 4218 and 4232]
16     * Overloaded objects which stringify to undef used as test names
17       now won't cause internal uninit warnings. [rt.cpan.org 4232]
18     * Failure diagnostics now come out on their own line when run in 
19       Test::Harness.
20     - eq_set() sometimes wasn't giving the right results if nested refs 
21       were involved [rt.cpan.org 3747]
22     - isnt() giving wrong diagnostics and warning if given any undefs.
23     * Give unlike() the right prototype [rt.cpan.org 4944]
24     - Change from CVS to Aegis
25     - is_deeply() will now do some basic argument checks to guard against
26       accidentally passing in a whole array instead of its reference.
27     - Mentioning Test::Differences, Test::Deep and Bundle::Test.
28     - Removed dependency on File::Spec.
29     - Fixing the grammar of diagnostic outputs when only a single test
30       is run or failed (ie. "Looks like you failed 1 tests").
31       [Darren Chamberlain]
32
33 0.48_01  Mon Nov 11 02:36:43 EST 2002
34     - Mention Test::Class in Test::More's SEE ALSO
35     * use_ok() now DWIM for version checks
36     - More problems with ithreads fixed.
37     * Test::Harness upgrade no longer optional.  It was causing too
38       many problems when the T::H upgrade didn't work.
39     * Drew Taylor added a 'no_diag' option to Test::More to switch
40       off all diag() statements.
41     * Test::Builder/More no longer automatically loads threads.pm
42       when threads are enabled.  The user must now do this manually.
43     * Alex Francis added reset() reset the state of Test::Builder in 
44       persistent environments.
45     - David Hand noted that Test::Builder/More exit code behavior was
46       not documented.  Only Test::Simple.
47
48 0.47  Mon Aug 26 03:54:22 PDT 2002 
49     * Tatsuhiko Miyagawa noticed Test::Builder was accidentally storing 
50       objects passed into test functions causing problems with tests 
51       relying on object destruction.
52     - Added example of calculating the number of tests to Test::Tutorial
53     - Peter Scott made the ending logic not fire on child processes when
54       forking.
55     * Test::Builder is once again ithread safe.
56
57 0.46  Sat Jul 20 19:57:40 EDT 2002
58     - Noted eq_set() isn't really a set comparision.
59     - Test fix, exit codes are broken on MacPerl (bleadperl@16868)
60     - Make Test::Simple install itself into the core for >= 5.8
61     - Small fixes to Test::Tutorial and skip examples
62     * Added TB->has_plan() from Adrian Howard
63     - Clarified the meaning of 'actual_ok' from TB->details
64     * Added TB->details() from chromatic
65     - Neil Watkiss fixed a pre-5.8 test glitch with threads.t
66     * If the test died before a plan, it would exit with 0 [ID 20020716.013]
67
68 0.45  Wed Jun 19 18:41:12 EDT 2002
69     - Andy Lester made the SKIP & TODO docs a bit clearer.
70     - Explicitly disallowing double plans. (RT #553)
71     - Kicking up the minimum version of Test::Harness to one that's
72       fairly bug free.
73     - Made clear a common problem with use_ok and BEGIN blocks.
74     - Arthur Bergman made Test::Builder thread-safe.
75
76 0.44  Thu Apr 25 00:27:27 EDT 2002
77     - names containing newlines no longer produce confusing output
78       (from chromatic)
79     - chromatic provided a fix so can_ok() honors can() overrides.
80     - Nick Ing-Simmons suggested todo_skip() be a bit clearer about
81       the skipping part.
82     - Making plan() vomit if it gets something it doesn't understand.
83     - Tatsuhiko Miyagawa fixed use_ok() with pragmata on older perls.
84     - quieting diag(undef)
85
86 0.43  Thu Apr 11 22:55:23 EDT 2002
87     - Adrian Howard added TB->maybe_regex()
88     - Adding Mark Fowler's suggestion to make diag() return
89       false.
90     - TB->current_test() still not working when no tests were run via
91       TB itself.  Fixed by Dave Rolsky.
92
93 0.42  Wed Mar  6 15:00:24 EST 2002
94     - Setting Test::Builder->current_test() now works (see what happens
95       when you forget to test things?)
96     - The change in is()'s undef/'' handling in 0.34 was an API change, 
97       but I forgot to declare it as such.
98     - The apostrophilic jihad attacks!  Philip Newtons patch for
99       grammar mistakes in the doc's.
100
101 0.41  Mon Dec 17 22:45:20 EST 2001
102     * chromatic added diag()
103     - Internal eval()'s sometimes interfering with $@ and $!.  Fixed.
104
105 0.40  Fri Dec 14 15:41:39 EST 2001
106     * isa_ok() now accepts unblessed references gracefully
107     - Nick Clark found a bug with like() and a regex with % in it.
108     - exit.t was hanging on 5.005_03 VMS perl.  Test now skipped.
109     - can_ok() would pass if no methods were given.  Now fails.
110     - isnt() diagnostic output format changed
111     * Added some docs about embedding and extending Test::More
112     * Added Test::More->builder
113     * Added cmp_ok()
114     * Added todo_skip()
115     * Added unlike()
116     - Piers pointed out that sometimes people override isa().
117       isa_ok() now accounts for that.
118
119 0.36  Thu Nov 29 14:07:39 EST 2001
120     - Matthias Urlichs found that intermixed prints to STDOUT and test 
121       output came out in the wrong order when piped.
122
123 0.35  Tue Nov 27 19:57:03 EST 2001
124     - Little glitch in the test suite.  No actual bug.
125
126 0.34  Tue Nov 27 15:43:56 EST 2001
127     * **API CHANGE** Empty string no longer matches undef in is() 
128       and isnt().
129     * Added isnt_eq and isnt_num to Test::Builder.
130
131 0.33  Mon Oct 22 21:05:47 EDT 2001
132     * It's now officially safe to redirect STDOUT and STDERR without
133       affecting test output.
134     - License and POD cleanup by Autrijus Tang
135     - Synched up Test::Tutorial with the wiki version
136     - Minor VMS test nit.
137
138 0.32  Tue Oct 16 16:52:02 EDT 2001
139     * Finally added a seperate plan() function
140     * Adding a name field to isa_ok()
141       (Requested by Dave Rolsky)
142     - Test::More was using Carp.pm, causing the occasional false positive.
143       (Reported by Tatsuhiko Miyagawa)
144
145 0.31  Mon Oct  8 19:24:53 EDT 2001
146     * Added an import option to Test::More
147     * Added no_ending and no_header options to Test::Builder
148       (Thanks to Dave Rolsky for giving this a swift kick in the ass)
149     * Added is_deeply().  Display of scalar refs not quite 100%
150       (Thanks to Stas Bekman for Apache::TestUtil idea thievery)
151     - Fixed a minor warning with skip()
152       (Thanks to Wolfgang Weisselberg for finding this one)
153
154 0.30  Thu Sep 27 22:10:04 EDT 2001
155     * Added Test::Builder
156       (Thanks muchly to chromatic for getting this off the ground!)
157     * Diagnostics are back to using STDERR *unless* it's from a todo
158       test.  Those go to STDOUT.
159     - Fixed it so nothing is printed if a test is run with a -c flag.
160       Handy when a test is being deparsed with B::Deparse.
161
162 0.20  *UNRELEASED*
163
164 0.19  Tue Sep 18 17:48:32 EDT 2001
165     * Test::Simple and Test::More no longer print their diagnostics
166       to STDERR.  It instead goes to STDOUT.
167     * TODO tests which fail now print full failure diagnostics.
168     - Minor bug in ok()'s test name diagnostics made it think a blank
169       name was a number.
170     - ok() less draconian about test names
171     - Added temporary special case for Parrot::Test
172     - Now requiring File::Spec for our tests.
173
174 0.18  Wed Sep  5 20:35:24 EDT 2001
175     * ***API CHANGE*** can_ok() only counts as one test
176     - can_ok() has better diagnostics
177     - Minor POD fixes from mjd
178     - adjusting the internal layout to make it easier to put it into
179       the core
180
181 0.17  Wed Aug 29 20:16:28 EDT 2001
182     * Added can_ok() and isa_ok() to Test::More
183
184 0.16  Tue Aug 28 19:52:11 EDT 2001
185     * vmsperl foiled my sensisble exit codes.  Reverting to a much more
186       coarse scheme.
187
188 0.15  Tue Aug 28 06:18:35 EDT 2001  *UNRELEASED*
189     * Now using sensible exit codes on VMS.
190
191 0.14  Wed Aug 22 17:26:28 EDT 2001
192     * Added a first cut at Test::Tutorial
193
194 0.13  Tue Aug 14 15:30:10 EDT 2001
195     * Added a reason to the skip_all interface
196     - Fixed a bug to allow 'use Test::More;' to work.
197       (Thanks to Tatsuhiko Miyagawa again)
198     - Now always testing backwards compatibility.
199
200 0.12  Tue Aug 14 11:02:39 EDT 2001
201     * Fixed some compatibility bugs with older Perls
202       (Thanks to Tatsuhiko Miyagawa)
203
204 0.11  Sat Aug 11 23:05:19 EDT 2001
205     * Will no longer warn about testing undef values
206     - Escaping # in test names
207     - Ensuring that ok() returns true or false and not undef
208     - Minor doc typo in the example
209
210 0.10  Tue Jul 31 15:01:11 EDT 2001
211     * Test::More is now distributed in this tarball.
212     * skip and todo tests work!
213     * Extended use_ok() so it can import
214     - A little internal rejiggering
215     - Added a TODO file
216
217 0.09  Wed Jun 27 02:55:54 EDT 2001
218     - VMS fixes
219
220 0.08  Fri Jun 15 14:39:50 EDT 2001
221     - Guarding against $/ and -l
222     - Reformatted the way failed tests are reported to make them stand out
223       a bit better.
224
225 0.07  Tue Jun 12 15:55:54 BST 2001
226     - 'use Test::Simple' by itself no longer causes death
227     - Yet more fixes for death in eval
228     - Limiting max failures reported via exit code to 254.
229
230 0.06  Wed May  9 23:38:17 BST 2001
231     - Whoops, left a private method in the public docs.
232
233 0.05  Wed May  9 20:40:35 BST 2001
234     - Forgot to include the exit tests.
235     - Trouble with exiting properly under 5.005_03 and 5.6.1 fixed
236     - Turned off buffering
237     * 5.004 new minimum version
238     - Now explicitly tested with 5.6.1, 5.6.0, 5.005_03 and 5.004
239
240 0.04  Mon Apr  2 11:05:01 BST 2001
241     - Fixed "require Test::Simple" so it doesn't bitch and exit 255
242     - Now installable with the CPAN shell.
243
244 0.03  Fri Mar 30 08:08:33 BST 2001
245     - ok() now prints on what line and file it failed.
246     - eval 'die' was considered abnormal.  Fixed.
247
248 0.02  Fri Mar 30 05:12:14 BST 2001      *UNRELEASED*
249     - exit codes tested
250     * exit code on abnormal exit changed to 255 (thanks to Tim Bunce for
251       pointing out that Unix can't do negative exit codes)
252     - abnormal exits now better caught.
253     - No longer using Test.pm to test this, but still minimum of 5.005
254       due to needing $^S.
255
256 0.01  Wed Mar 28 06:44:44 BST 2001
257     - First working version released to CPAN
258