summaryrefslogtreecommitdiff
path: root/devel/p5-Test-Simple
AgeCommit message (Collapse)AuthorFilesLines
2002-04-27Updated to p5-Test-Simple-0.44shell2-5/+5
Changes since p5-Test-Simple-0.43 : - names containing newlines no longer produce confusing output (from chromatic) - chromatic provided a fix so can_ok() honors can() overrides. - Nick Ing-Simmons suggested todo_skip() be a bit clearer about the skipping part. - Making plan() vomit if it gets something it doesn't understand. - Tatsuhiko Miyagawa fixed use_ok() with pragmata on older perls. - quieting diag(undef)
2002-04-17Updated to p5-Test-Simple-0.43shell2-6/+6
- change to my email address Changes since p5-Test-Simple-0.42 - Adrian Howard added TB->maybe_regex() - Adding Mark Fowler's suggestion to make diag() return false. - TB->current_test() still not working when no tests were run via TB itself. Fixed by Dave Rolsky.
2002-03-15Updated p5-Test-Simple (provided by Shell Hung in pkg/15926)martti2-5/+5
- Setting Test::Builder->current_test() now works (see what happens when you forget to test things?) - The change in is()'s undef/'' handling in 0.34 was an API change, but I forgot to declare it as such. - The apostrophilic jihad attacks! Philip Newtons patch for grammar mistakes in the doc's.
2002-01-26Updated p5-Test-Simple to 0.41 (provided by Shell Hung in pkg/15325)martti3-9/+9
- chromatic added diag() - fixed bug for internal eval()'s sometimes interfering with $@ and $!
2001-12-19Updated to 0.40 (provided by Shell Hung in pkg/14991)martti2-6/+6
- isa_ok() now accepts unblessed references gracefully - exit.t was hanging on 5.005_03 VMS perl. Test now skipped. - can_ok() would pass if no methods were given. Now fails. - isnt() diagnostic output format changed - Added Test::More->builder - Added cmp_ok(), todo_skip(), unlike()
2001-12-10Updated to 0.36 (provided by Shell Hung in pkg/14785)martti2-5/+5
Changes : - Empty string no longer matches undef in is() and isnt() - Added isnt_eq and isnt_num to Test::Builder - Little glitch in the test suite. - fixed intermixed prints to STDOUT and test output came out in the wrong order when piped
2001-11-26Buildlinkify, in the sense that only the perl headers are found injlam1-2/+3
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-11-22Updated to version 0.33 (PR#14511). Changes since 0.17:martti2-5/+5
* It's now officially safe to redirect STDOUT and STDERR without affecting test output. - License and POD cleanup by Autrijus Tang - Synched up Test::Tutorial with the wiki version - Minor VMS test nit. * Finally added a seperate plan() function * Adding a name field to isa_ok() (Requested by Dave Rolsky) - Test::More was using Carp.pm, causing the occasional false positive. (Reported by Tatsuhiko Miyagawa) * Added Test::Builder (Thanks muchly to chromatic for getting this off the ground!) * Diagnostics are back to using STDERR *unless* it's from a todo test. Those go to STDOUT. - Fixed it so nothing is printed if a test is run with a -c flag. Handy when a test is being deparsed with B::Deparse. * Test::Simple and Test::More no longer print their diagnostics to STDERR. It instead goes to STDOUT. * TODO tests which fail now print full failure diagnostics. - Minor bug in ok()'s test name diagnostics made it think a blank name was a number. - ok() less draconian about test names - Added temporary special case for Parrot::Test - Now requiring File::Spec for our tests. * ***API CHANGE*** can_ok() only counts as one test - can_ok() has better diagnostics - Minor POD fixes from mjd - adjusting the internal layout to make it easier to put it into the core
2001-11-01Move pkg/ files into package's toplevel directoryzuntum3-1/+1
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego1-1/+2
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-09-27Change foo-* dependencies into foo-[0-9]* dependencies so we match onlyjlam1-2/+2
those packages with a base package name of "foo".
2001-09-27p5-Test-Simple - perl5 module with a simple framework for writing testsjlam4-0/+28
This is an extremely simple, extremely basic module for writing tests suitable for CPAN modules and other pursuits. If you wish to do more complicated testing, use the Test::More module (a drop-in replacement for this one). Provided in pkg/13846 by Sen Nagata <sen@eccosys.com>.