Commit graph

22 commits

Author SHA1 Message Date
grant
b2e0fa4a11 move the p5-Test-Harness DEPENDS to p5-Test-Harness where it belongs,
so any package requiring it can DTRT.
2004-05-08 04:05:58 +00:00
grant
c950a3844c allow perl{,-thread}>=5.8.3 to satisfy the p5-Test-Harness dependency.
Test::Harness is included in perl>=5.8.3, and for that reason,
p5-Test-Harness has a CONFLICT on perl>=5.8.3 which was blocking many
packages from being installed.
2004-05-07 11:30:39 +00:00
kim
fbec29cc42 Undo previous (this installs in site_perl). 2004-05-01 16:29:37 +00:00
kim
756eaaa134 Add a conflict with perl 5.8.3 and later. 2004-05-01 16:05:18 +00:00
jlam
23c06e39b8 This packages doesn't use the compiler. 2004-03-31 01:53:01 +00:00
jlam
848d6eb2a3 bl3ify 2004-01-05 22:16:24 +00:00
martti
e69ab8c365 COMMENT should start with a capital letter. 2003-07-21 16:35:12 +00:00
grant
4083b24390 s/netbsd.org/NetBSD.org/ 2003-07-17 21:31:04 +00:00
jlam
42e0d6d403 Always install into site_perl, never into the main perl directory. 2002-10-21 07:31:21 +00:00
shell
4e00858107 Updated to Test-Simple-0.47
- use buildlink2

Changes :
0.47  Mon Aug 26 03:54:22 PDT 2002
    * Tatsuhiko Miyagawa noticed Test::Builder was accidentally storing
      objects passed into test functions causing problems with tests
      relying on object destruction.
    - Added example of calculating the number of tests to Test::Tutorial
    - Peter Scott made the ending logic not fire on child processes when
      forking.
    * Test::Builder is once again ithread safe.

0.46  Sat Jul 20 19:57:40 EDT 2002
    - Noted eq_set() isn't really a set comparision.
    - Test fix, exit codes are broken on MacPerl (bleadperl@16868)
    - Make Test::Simple install itself into the core for >= 5.8
    - Small fixes to Test::Tutorial and skip examples
    * Added TB->has_plan() from Adrian Howard
    - Clarified the meaning of 'actual_ok' from TB->details
    * Added TB->details() from chromatic
    - Neil Watkiss fixed a pre-5.8 test glitch with threads.t
    * If the test died before a plan, it would exit with 0 [ID 20020716.013]

0.45  Wed Jun 19 18:41:12 EDT 2002
    - Andy Lester made the SKIP & TODO docs a bit clearer.
    - Explicitly disallowing double plans. (RT #553)
    - Kicking up the minimum version of Test::Harness to one that's
      fairly bug free.
    - Made clear a common problem with use_ok and BEGIN blocks.
    - Arthur Bergman made Test::Builder thread-safe.
2002-10-20 03:16:04 +00:00
shell
4ebf3ba4db Updated to p5-Test-Simple-0.44
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-27 08:06:21 +00:00
shell
2b0329a77b Updated to p5-Test-Simple-0.43
- 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-04-17 11:49:21 +00:00
martti
61da464654 Updated p5-Test-Simple (provided by Shell Hung in pkg/15926)
- 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-03-15 12:31:46 +00:00
martti
431c606007 Updated p5-Test-Simple to 0.41 (provided by Shell Hung in pkg/15325)
- chromatic added diag()
- fixed bug for internal eval()'s sometimes interfering
  with $@ and $!
2002-01-26 06:55:55 +00:00
martti
7d545c58aa Updated to 0.40 (provided by Shell Hung in pkg/14991)
- 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-19 06:49:34 +00:00
martti
4be341f2d3 Updated to 0.36 (provided by Shell Hung in pkg/14785)
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-12-10 15:42:43 +00:00
jlam
cc4128d97e Buildlinkify, in the sense that only the perl headers are found in
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-11-26 06:49:36 +00:00
martti
85d4a6baf7 Updated to version 0.33 (PR#14511). Changes since 0.17:
* 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-22 09:37:56 +00:00
zuntum
c72c1cf5f9 Move pkg/ files into package's toplevel directory 2001-11-01 00:57:41 +00:00
veego
63ad910dee SVR4 packages have a limit of 9 chars for a package name.
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-10-18 15:20:01 +00:00
jlam
0cec9f63e0 Change foo-* dependencies into foo-[0-9]* dependencies so we match only
those packages with a base package name of "foo".
2001-09-27 07:36:12 +00:00
jlam
b3311d9d3a p5-Test-Simple - perl5 module with a simple framework for writing tests
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>.
2001-09-27 04:37:07 +00:00