summaryrefslogtreecommitdiff
path: root/lib/constant.t
Commit message (Collapse)AuthorAgeFilesLines
* Tests for creating constants where prototypes or other symbols of theNicholas Clark2005-12-241-2/+72
| | | | | same name already exist. p4raw-id: //depot/perl@26484
* &test in constant.t is vestigial, so amputate it.Nicholas Clark2004-12-011-12/+0
| | | p4raw-id: //depot/perl@23588
* [perl #32400] Unnecessary warning from constant.pm Anno Siegel2004-11-121-1/+10
| | | | | | From: Anno Siegel (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-32400-100099.4.31094423840584@perl.org> p4raw-id: //depot/perl@23497
* deprecated warningsIlya Zakharevich2002-12-171-1/+1
| | | | | Message-ID: <20021213214707.GA2588@math.berkeley.edu> p4raw-id: //depot/perl@18315
* missing chunk from #17725 causes lib/constant.t test failuresHugo van der Sanden2002-08-181-97/+93
| | | p4raw-id: //depot/perl@17730
* RC3: lib/constant.t #35Tatsuhiko Miyagawa2002-07-151-1/+1
| | | | | | | | Message-ID: <86adotwisn.wl@mail.edge.co.jp> Assuming " " in error messages does not work in Japanese, just skip the test (even the #34 is suspicious). p4raw-id: //depot/perl@17545
* The Grand Trek: move the *.t files from t/ to lib/ and ext/.Jarkko Hietaniemi2001-06-181-0/+251
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