Missed files in upgrading modules. Grrrr
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / Changes
CommitLineData
b1ddf169 10.61 Fri Sep 23 23:26:05 PDT 2005
2 - create.t was trying to read from a file before it had been closed
3 (and thus the changes may not have yet been written).
4 * is_deeply() would call stringification methods on non-object strings
5 which happened to be the name of a string overloaded class.
6 [rt.cpan.org 14675]
7
80.60_02 Tue Aug 9 00:27:41 PDT 2005
9 * Added Test::Builder::Module.
10 - Changed Test::More and Test::Simple to use Test::Builder::Module
11 - Minor Win32 testing nit in fail-more.t
12 * Added no_diag() method to Test::Builder and changed Test::More's
13 no_diag internals to use that. [rt.cpan.org 8655]
14 * Deprecated no_diag() as an option to "use Test::More". Call the
15 Test::Builder method instead.
16
170.60_01 Sun Jul 3 18:11:58 PDT 2005
18 - Moved the docs around a little to better group all the testing
19 functions together. [rt.cpan.org 8388]
20 * Added a BAIL_OUT() function to Test::More [rt.cpan.org 8381]
21 - Changed Test::Builder->BAILOUT to BAIL_OUT to match other method's
22 naming conventions. BAILOUT remains but is deprecated.
23 * Changed the standard failure diagnostics to include the test name.
24 [rt.cpan.org 12490]
25 - is_deeply() was broken for overloaded objects in the top level in
26 0.59_01. [rt.cpan.org 13506]
27 - String overloaded objects without an 'eq' or '==' method are now
28 handled in cmp_ok() and is().
29 - cmp_ok() will now treat overloaded objects as numbers if the comparison
30 operator is numeric. [rt.cpan.org 13156]
31 - cmp_ok(), like() and unlike will now throw uninit warnings if their
32 arguments are undefined. [rt.cpan.org 13155]
33 - cmp_ok() will now throw warnings as if the comparison were run
34 normally, for example cmp_ok(2, '==', 'foo') will warn about 'foo'
35 not being numeric. Previously all warnings in the comparison were
36 supressed. [rt.cpan.org 13155]
37 - Tests will now report *both* the number of tests failed and if the
38 wrong number of tests were run. Previously if tests failed and the
39 wrong number were run it would only report the latter.
40 [rt.cpan.org 13494]
41 - Missing or extra tests are not considered failures for the purposes
42 of calculating the exit code. Should there be no failures but the
43 wrong number of tests the exit code will be 254.
44 - Avoiding an unbalanced sort in eq_set() [bugs.perl.org 36354]
45 - Documenting that eq_set() doesn't deal well with refs.
46 - Clarified how is_deeply() compares a bit.
47 * Once again working on 5.4.5.
48
5143c659 490.60 Tue May 3 14:20:34 PDT 2005
50
510.59_01 Tue Apr 26 21:51:12 PDT 2005
52 * Test::Builder now has a create() method which allows you to create
53 a brand spanking new Test::Builder object.
54 * require_ok() was not working for single letter module names.
55 * is_deeply() and eq_* now work with circular scalar references
56 (Thanks Fergal)
57 * Use of eq_* now officially discouraged.
58 - Removed eq_* from the SYNOPSIS.
59 - is_deeply(undef, $not_undef); now works. [rt.cpan.org 9441]
60 - is_deeply() was mistakenly interpeting the same reference used twice
61 in a data structure as being circular causing failures.
62 [rt.cpan.org 11623]
63 - Loading Test::Builder but not using it would interfere with the
64 exit code if the code exited. [rt.cpan.org 12310]
65 - is_deeply() diagnostics now disambiguate between stringified references
66 and references. [rt.cpan.org 8865]
67 - Files opened by the output methods are now autoflushed.
68 - todo() now honors $Level when looking for $TODO.
69
0257f296 700.54 Wed Dec 15 04:18:43 EST 2004
71 * $how_many is optional for skip() and todo_skip(). Thanks to
72 Devel::Cover for pointing this out.
73 - Removed a user defined function called err() in the tests to placate
74 users of older versions of the dor patch before err() was weakend.
75 [rt.cpan.org 8734]
76
770.53_01 Sat Dec 11 19:02:18 EST 2004
78 - current_test() can now be set backward.
79 - *output() methods now handle tied handles and *FOO{IO} properly.
80 - maybe_regex() now handles undef gracefully.
81 - maybe_regex() now handles 'm,foo,' style regexes.
82 - sort_bug.t wasn't checking for threads properly. Would fail on
83 5.6 that had ithreads compiled in. [rt.cpan.org 8765]
84
7483b81c 850.53 Mon Nov 29 04:43:24 EST 2004
86 - Apparently its possible to have Module::Signature installed without
87 it being functional. Fixed the signature test to account for this.
88 (not a real bug)
89
900.52 Sun Nov 28 21:41:03 EST 2004
91 - plan() now better checks that the given plan is valid.
92 [rt.cpan.org 2597]
93
940.51_02 Sat Nov 27 01:25:25 EST 2004
95 * is_deeply() and all the eq_* functions now handle circular data
96 structures. [rt.cpan.org 7289]
97 * require_ok() now handles filepaths in addition to modules.
98 - Clarifying Test::More's position on overloaded objects
99 - Fixed a bug introduced in 0.51_01 causing is_deeply() to pierce
100 overloaded objects.
101 - Mentioning rt.cpan.org for reporting bugs.
102
1030.51_01 Fri Nov 26 02:59:30 EST 2004
104 - plan() was accidentally exporting functions [rt.cpan.org 8385]
105 * diag @msgs would insert # between arguments. [rt.cpan.org 8392]
106 * eq_set() could cause problems under threads due to a weird sort bug
107 [rt.cpan.org 6782]
108 * undef no longer equals '' in is_deeply() [rt.cpan.org 6837]
109 * is_deeply() would sometimes compare references as strings.
110 [rt.cpan.org 7031]
111 - eq_array() and eq_hash() could hold onto references if they failed
112 keeping them in memory and preventing DESTROY. [rt.cpan.org 7032]
113 * is_deeply() could confuse [] with a non-existing value
114 [rt.cpan.org 7030]
115 - is_deeply() diagnostics a little off when scalar refs were inside
116 an array or hash ref [rt.cpan.org 7033]
117 - Thanks to Fergal Daly for ferretting out all these long standing
118 is_deeply and eq_* bugs.
119
1200.51 Tue Nov 23 04:51:12 EST 2004
121 - Fixed bug in fail_one.t on Windows (not a real bug).
122 - TODO reasons as overloaded objects now won't blow up under threads.
123 [Autrijus Tang]
124 - skip() in 0.50 tickled yet another bug in threads::shared. Hacked
125 around it.
126
30e302f8 1270.50 Sat Nov 20 00:28:44 EST 2004
7483b81c 128 - Fixed bug in fail-more test on Windows (not a real bug).
30e302f8 129 [rt.cpan.org 8022]
7483b81c 130 - Change from CVS to SVK. Hopefully this is the last time I move
131 version control systems.
30e302f8 132 - Again removing File::Spec dependency (came back in 0.48_02)
133 - Change from Aegis back to CVS
134
1350.49 Thu Oct 14 21:58:50 EDT 2004
136 - t/harness_active.t would fail for frivolous reasons with older
137 MakeMakers (test bug) [thanks Bill Moseley for noticing]
138
1390.48_02 Mon Jul 19 02:07:23 EDT 2004
140 * Overloaded objects as names now won't blow up under threads
141 [rt.cpan.org 4218 and 4232]
142 * Overloaded objects which stringify to undef used as test names
143 now won't cause internal uninit warnings. [rt.cpan.org 4232]
144 * Failure diagnostics now come out on their own line when run in
145 Test::Harness.
146 - eq_set() sometimes wasn't giving the right results if nested refs
147 were involved [rt.cpan.org 3747]
148 - isnt() giving wrong diagnostics and warning if given any undefs.
149 * Give unlike() the right prototype [rt.cpan.org 4944]
150 - Change from CVS to Aegis
151 - is_deeply() will now do some basic argument checks to guard against
152 accidentally passing in a whole array instead of its reference.
153 - Mentioning Test::Differences, Test::Deep and Bundle::Test.
154 - Removed dependency on File::Spec.
155 - Fixing the grammar of diagnostic outputs when only a single test
156 is run or failed (ie. "Looks like you failed 1 tests").
157 [Darren Chamberlain]
158
1590.48_01 Mon Nov 11 02:36:43 EST 2002
160 - Mention Test::Class in Test::More's SEE ALSO
161 * use_ok() now DWIM for version checks
162 - More problems with ithreads fixed.
163 * Test::Harness upgrade no longer optional. It was causing too
164 many problems when the T::H upgrade didn't work.
165 * Drew Taylor added a 'no_diag' option to Test::More to switch
166 off all diag() statements.
167 * Test::Builder/More no longer automatically loads threads.pm
168 when threads are enabled. The user must now do this manually.
169 * Alex Francis added reset() reset the state of Test::Builder in
170 persistent environments.
171 - David Hand noted that Test::Builder/More exit code behavior was
172 not documented. Only Test::Simple.
11ea77c5 173
60ffb308 1740.47 Mon Aug 26 03:54:22 PDT 2002
175 * Tatsuhiko Miyagawa noticed Test::Builder was accidentally storing
176 objects passed into test functions causing problems with tests
177 relying on object destruction.
178 - Added example of calculating the number of tests to Test::Tutorial
179 - Peter Scott made the ending logic not fire on child processes when
180 forking.
181 * Test::Builder is once again ithread safe.
182
1830.46 Sat Jul 20 19:57:40 EDT 2002
184 - Noted eq_set() isn't really a set comparision.
185 - Test fix, exit codes are broken on MacPerl (bleadperl@16868)
186 - Make Test::Simple install itself into the core for >= 5.8
187 - Small fixes to Test::Tutorial and skip examples
188 * Added TB->has_plan() from Adrian Howard
189 - Clarified the meaning of 'actual_ok' from TB->details
190 * Added TB->details() from chromatic
191 - Neil Watkiss fixed a pre-5.8 test glitch with threads.t
192 * If the test died before a plan, it would exit with 0 [ID 20020716.013]
193
a344be10 1940.45 Wed Jun 19 18:41:12 EDT 2002
195 - Andy Lester made the SKIP & TODO docs a bit clearer.
196 - Explicitly disallowing double plans. (RT #553)
197 - Kicking up the minimum version of Test::Harness to one that's
198 fairly bug free.
199 - Made clear a common problem with use_ok and BEGIN blocks.
200 - Arthur Bergman made Test::Builder thread-safe.
201
89c1e84a 2020.44 Thu Apr 25 00:27:27 EDT 2002
203 - names containing newlines no longer produce confusing output
204 (from chromatic)
205 - chromatic provided a fix so can_ok() honors can() overrides.
206 - Nick Ing-Simmons suggested todo_skip() be a bit clearer about
207 the skipping part.
208 - Making plan() vomit if it gets something it doesn't understand.
209 - Tatsuhiko Miyagawa fixed use_ok() with pragmata on older perls.
210 - quieting diag(undef)
211
2120.43 Thu Apr 11 22:55:23 EDT 2002
213 - Adrian Howard added TB->maybe_regex()
214 - Adding Mark Fowler's suggestion to make diag() return
215 false.
216 - TB->current_test() still not working when no tests were run via
217 TB itself. Fixed by Dave Rolsky.
218
6686786d 2190.42 Wed Mar 6 15:00:24 EST 2002
220 - Setting Test::Builder->current_test() now works (see what happens
221 when you forget to test things?)
222 - The change in is()'s undef/'' handling in 0.34 was an API change,
223 but I forgot to declare it as such.
224 - The apostrophilic jihad attacks! Philip Newtons patch for
225 grammar mistakes in the doc's.
226
a9153838 2270.41 Mon Dec 17 22:45:20 EST 2001
228 * chromatic added diag()
229 - Internal eval()'s sometimes interfering with $@ and $!. Fixed.
230
2310.40 Fri Dec 14 15:41:39 EST 2001
232 * isa_ok() now accepts unblessed references gracefully
233 - Nick Clark found a bug with like() and a regex with % in it.
234 - exit.t was hanging on 5.005_03 VMS perl. Test now skipped.
235 - can_ok() would pass if no methods were given. Now fails.
236 - isnt() diagnostic output format changed
237 * Added some docs about embedding and extending Test::More
238 * Added Test::More->builder
239 * Added cmp_ok()
240 * Added todo_skip()
241 * Added unlike()
242 - Piers pointed out that sometimes people override isa().
243 isa_ok() now accounts for that.
244
2450.36 Thu Nov 29 14:07:39 EST 2001
246 - Matthias Urlichs found that intermixed prints to STDOUT and test
247 output came out in the wrong order when piped.
248
2490.35 Tue Nov 27 19:57:03 EST 2001
250 - Little glitch in the test suite. No actual bug.
251
2520.34 Tue Nov 27 15:43:56 EST 2001
6686786d 253 * **API CHANGE** Empty string no longer matches undef in is()
254 and isnt().
a9153838 255 * Added isnt_eq and isnt_num to Test::Builder.
256
4bd4e70a 2570.33 Mon Oct 22 21:05:47 EDT 2001
258 * It's now officially safe to redirect STDOUT and STDERR without
259 affecting test output.
260 - License and POD cleanup by Autrijus Tang
261 - Synched up Test::Tutorial with the wiki version
262 - Minor VMS test nit.
263
33459055 2640.32 Tue Oct 16 16:52:02 EDT 2001
265 * Finally added a seperate plan() function
266 * Adding a name field to isa_ok()
267 (Requested by Dave Rolsky)
268 - Test::More was using Carp.pm, causing the occasional false positive.
269 (Reported by Tatsuhiko Miyagawa)
270
2710.31 Mon Oct 8 19:24:53 EDT 2001
272 * Added an import option to Test::More
273 * Added no_ending and no_header options to Test::Builder
274 (Thanks to Dave Rolsky for giving this a swift kick in the ass)
275 * Added is_deeply(). Display of scalar refs not quite 100%
276 (Thanks to Stas Bekman for Apache::TestUtil idea thievery)
277 - Fixed a minor warning with skip()
278 (Thanks to Wolfgang Weisselberg for finding this one)
279
2800.30 Thu Sep 27 22:10:04 EDT 2001
281 * Added Test::Builder
4bd4e70a 282 (Thanks muchly to chromatic for getting this off the ground!)
33459055 283 * Diagnostics are back to using STDERR *unless* it's from a todo
284 test. Those go to STDOUT.
285 - Fixed it so nothing is printed if a test is run with a -c flag.
286 Handy when a test is being deparsed with B::Deparse.
287
2880.20 *UNRELEASED*
289
0cd946aa 2900.19 Tue Sep 18 17:48:32 EDT 2001
291 * Test::Simple and Test::More no longer print their diagnostics
292 to STDERR. It instead goes to STDOUT.
293 * TODO tests which fail now print full failure diagnostics.
294 - Minor bug in ok()'s test name diagnostics made it think a blank
295 name was a number.
296 - ok() less draconian about test names
297 - Added temporary special case for Parrot::Test
298 - Now requiring File::Spec for our tests.
299
d020a79a 3000.18 Wed Sep 5 20:35:24 EDT 2001
301 * ***API CHANGE*** can_ok() only counts as one test
302 - can_ok() has better diagnostics
303 - Minor POD fixes from mjd
304 - adjusting the internal layout to make it easier to put it into
305 the core
306
3070.17 Wed Aug 29 20:16:28 EDT 2001
308 * Added can_ok() and isa_ok() to Test::More
309
3100.16 Tue Aug 28 19:52:11 EDT 2001
311 * vmsperl foiled my sensisble exit codes. Reverting to a much more
312 coarse scheme.
313
3140.15 Tue Aug 28 06:18:35 EDT 2001 *UNRELEASED*
315 * Now using sensible exit codes on VMS.
316
3170.14 Wed Aug 22 17:26:28 EDT 2001
318 * Added a first cut at Test::Tutorial
319
3200.13 Tue Aug 14 15:30:10 EDT 2001
321 * Added a reason to the skip_all interface
322 - Fixed a bug to allow 'use Test::More;' to work.
323 (Thanks to Tatsuhiko Miyagawa again)
324 - Now always testing backwards compatibility.
325
3260.12 Tue Aug 14 11:02:39 EDT 2001
327 * Fixed some compatibility bugs with older Perls
328 (Thanks to Tatsuhiko Miyagawa)
329
3300.11 Sat Aug 11 23:05:19 EDT 2001
331 * Will no longer warn about testing undef values
332 - Escaping # in test names
333 - Ensuring that ok() returns true or false and not undef
334 - Minor doc typo in the example
335
3360.10 Tue Jul 31 15:01:11 EDT 2001
337 * Test::More is now distributed in this tarball.
338 * skip and todo tests work!
339 * Extended use_ok() so it can import
340 - A little internal rejiggering
341 - Added a TODO file
342
11ea77c5 3430.09 Wed Jun 27 02:55:54 EDT 2001
344 - VMS fixes
345
3460.08 Fri Jun 15 14:39:50 EDT 2001
347 - Guarding against $/ and -l
348 - Reformatted the way failed tests are reported to make them stand out
349 a bit better.
350
3510.07 Tue Jun 12 15:55:54 BST 2001
352 - 'use Test::Simple' by itself no longer causes death
353 - Yet more fixes for death in eval
354 - Limiting max failures reported via exit code to 254.
355
3560.06 Wed May 9 23:38:17 BST 2001
357 - Whoops, left a private method in the public docs.
358
3590.05 Wed May 9 20:40:35 BST 2001
360 - Forgot to include the exit tests.
361 - Trouble with exiting properly under 5.005_03 and 5.6.1 fixed
362 - Turned off buffering
363 * 5.004 new minimum version
364 - Now explicitly tested with 5.6.1, 5.6.0, 5.005_03 and 5.004
365
3660.04 Mon Apr 2 11:05:01 BST 2001
367 - Fixed "require Test::Simple" so it doesn't bitch and exit 255
368 - Now installable with the CPAN shell.
369
3700.03 Fri Mar 30 08:08:33 BST 2001
371 - ok() now prints on what line and file it failed.
372 - eval 'die' was considered abnormal. Fixed.
373
3740.02 Fri Mar 30 05:12:14 BST 2001 *UNRELEASED*
375 - exit codes tested
376 * exit code on abnormal exit changed to 255 (thanks to Tim Bunce for
377 pointing out that Unix can't do negative exit codes)
378 - abnormal exits now better caught.
379 - No longer using Test.pm to test this, but still minimum of 5.005
380 due to needing $^S.
381
3820.01 Wed Mar 28 06:44:44 BST 2001
383 - First working version released to CPAN
384