summaryrefslogtreecommitdiff
path: root/t/test_pl
Commit message (Collapse)AuthorAgeFilesLines
* Make t/test_pl/tempfile.t produce more diagnosticsBrad Gilbert2012-09-251-6/+27
|
* Added t/test_pl/tempfile.tBrad Gilbert2012-09-251-0/+39
|
* Added test names to some tests in t/test_pl/_num_to_alpha.tBrad Gilbert2012-09-251-11/+13
|
* Added optional char limit to _num_to_alpha() in test.plBrad Gilbert2012-09-251-1/+9
|
* Add _num_to_alpha() to test.plBrad Gilbert2012-09-251-0/+34
| | | | Also added testing for _num_to_alpha()
* Add class_ok() and object_ok() to t/test.pl.Michael G. Schwern2011-11-171-1/+20
| | | | | | | | | | Change every existing instance of isa_ok() to use object_ok(). This is safe because before this point, t/test.pl's isa_ok() only worked on objects. lib/dbmt_common.pl is the last hold out because it uses Test::More. These are like isa_ok() but they also check if it's a class or an object. This lets the core tests defend against outlandish bugs while allowing t/test.pl to retain feature parity with Test::More.
* Patch t/test.pl so isa_ok() works with objects.Michael G. Schwern2011-11-171-0/+44
This mirrors can_ok() and Test::More. Also add some tests for isa_ok() and can_ok().