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