summaryrefslogtreecommitdiff
path: root/lib/Exporter.t
Commit message (Collapse)AuthorAgeFilesLines
* Test exported arrays and hashes without using defined()Jerry D. Hedden2009-10-281-11/+20
|
* Fix Exporter test for 2770a1ce2934f4277de13f4f795ba41c86bf1646. Silly me.Nicholas Clark2009-02-071-0/+1
|
* update Exporter to version 5.63Adriano Ferreira2008-07-301-1/+6
| | | | | | From: "Adriano Ferreira" <a.r.ferreira@gmail.com> Message-ID: <73ddeb6c0807291337k150d5172pd671a5df980b7faf@mail.gmail.com> p4raw-id: //depot/perl@34164
* Don't swallow up other warnings in Exporter's test. Remove a needlessNicholas Clark2007-03-091-2/+1
| | | | | eval that happened to generate 4 warnings. p4raw-id: //depot/perl@30531
* Make Exporter::Heavy correctly not warn when exporting a symbol onlyNicholas Clark2007-03-091-4/+7
| | | | | | declared in the export specification. Ensure that the test actually tests this. p4raw-id: //depot/perl@30529
* Dual life for ExporterAdriano Ferreira2006-09-071-3/+5
| | | | | | From: "Adriano Ferreira" <a.r.ferreira@gmail.com> Message-ID: <73ddeb6c0609061240g34f60d9fodaf7727575778d8e@mail.gmail.com> p4raw-id: //depot/perl@28795
* Make Exporter.t warnings cleanMichael G. Schwern2005-07-011-8/+8
| | | | | Message-ID: <20050628225836.GB27320@windhund.schwern.org> p4raw-id: //depot/perl@25036
* Re: [PATCH] Remove Carp from warnings.pmJim Cromie2005-01-071-1/+1
| | | | | Message-ID: <cfe85dfa05010305367445dee6@mail.gmail.com> p4raw-id: //depot/perl@23768
* Implement C<use Exporter 'import'> :Fergal Daly2003-11-281-1/+19
| | | | | | | | Subject: Re: [PATCH] Exporter-related PODs Message-Id: <200311100008.52639.fergal@esatclear.ie> (tweaked, so the imported import() doesn't spit out warnings) p4raw-id: //depot/perl@21798
* Make Exporter cope with changing EXPORT_OK (was Re: Recent changes to ↵Nicholas Clark2002-10-101-1/+19
| | | | | | | Exporter::Heavy break Math::Pari) Message-ID: <20020928175159.GC403@Bagpuss.unfortu.net> p4raw-id: //depot/perl@17988
* Exporter.t (and question)Nicholas Clark2001-12-171-2/+22
| | | | | Message-ID: <20011216172455.P21702@plum.flirble.org> p4raw-id: //depot/perl@13728
* More tests.Jarkko Hietaniemi2001-09-061-16/+31
| | | p4raw-id: //depot/perl@11909
* The Grand Trek: move the *.t files from t/ to lib/ and ext/.Jarkko Hietaniemi2001-06-181-0/+145
No doubt I made some mistakes like missed some files or misnamed some files. The naming rules were more or less: (1) if the module is from CPAN, follows its ways, be it t/*.t or test.pl. (2) otherwise if there are multiple tests for a module put them in a t/ (3) otherwise if there's only one test put it in Module.t (4) helper files go to module/ (locale, strict, warnings) (5) use longer filenames now that we can (but e.g. the compat-0.6.t and the Text::Balanced test files still were renamed to be more civil against the 8.3 people) installperl was updated appropriately not to install the *.t files or the help files from under lib. TODO: some helper files still remain under t/ that could follow their 'masters'. UPDATE: On second thoughts, why should they. They can continue to live under t/lib, and in fact the locale/strict/warnings helpers that were moved could be moved back. This way the amount of non-installable stuff under lib/ stays smaller. p4raw-id: //depot/perl@10676