1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
|
.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings. \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
. ds -- \(*W-
. ds PI pi
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
. ds L" ""
. ds R" ""
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds -- \|\(em\|
. ds PI \(*p
. ds L" ``
. ds R" ''
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "Test::More 3perl"
.TH Test::More 3perl "2023-11-25" "perl v5.36.0" "Perl Programmers Reference Guide"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
Test::More \- yet another framework for writing test scripts
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 5
\& use Test::More tests => 23;
\& # or
\& use Test::More skip_all => $reason;
\& # or
\& use Test::More; # see done_testing()
\&
\& require_ok( \*(AqSome::Module\*(Aq );
\&
\& # Various ways to say "ok"
\& ok($got eq $expected, $test_name);
\&
\& is ($got, $expected, $test_name);
\& isnt($got, $expected, $test_name);
\&
\& # Rather than print STDERR "# here\*(Aqs what went wrong\en"
\& diag("here\*(Aqs what went wrong");
\&
\& like ($got, qr/expected/, $test_name);
\& unlike($got, qr/expected/, $test_name);
\&
\& cmp_ok($got, \*(Aq==\*(Aq, $expected, $test_name);
\&
\& is_deeply($got_complex_structure, $expected_complex_structure, $test_name);
\&
\& SKIP: {
\& skip $why, $how_many unless $have_some_feature;
\&
\& ok( foo(), $test_name );
\& is( foo(42), 23, $test_name );
\& };
\&
\& TODO: {
\& local $TODO = $why;
\&
\& ok( foo(), $test_name );
\& is( foo(42), 23, $test_name );
\& };
\&
\& can_ok($module, @methods);
\& isa_ok($object, $class);
\&
\& pass($test_name);
\& fail($test_name);
\&
\& BAIL_OUT($why);
\&
\& # UNIMPLEMENTED!!!
\& my @status = Test::More::status;
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
\&\fB\s-1STOP\s0!\fR If you're just getting started writing tests, have a look at
Test2::Suite first.
.PP
This is a drop in replacement for Test::Simple which you can switch to once you
get the hang of basic testing.
.PP
The purpose of this module is to provide a wide range of testing
utilities. Various ways to say \*(L"ok\*(R" with better diagnostics,
facilities to skip tests, test future features and compare complicated
data structures. While you can do almost anything with a simple
\&\f(CW\*(C`ok()\*(C'\fR function, it doesn't provide good diagnostic output.
.SS "I love it when a plan comes together"
.IX Subsection "I love it when a plan comes together"
Before anything else, you need a testing plan. This basically declares
how many tests your script is going to run to protect against premature
failure.
.PP
The preferred way to do this is to declare a plan when you \f(CW\*(C`use Test::More\*(C'\fR.
.PP
.Vb 1
\& use Test::More tests => 23;
.Ve
.PP
There are cases when you will not know beforehand how many tests your
script is going to run. In this case, you can declare your tests at
the end.
.PP
.Vb 1
\& use Test::More;
\&
\& ... run your tests ...
\&
\& done_testing( $number_of_tests_run );
.Ve
.PP
\&\fB\s-1NOTE\s0\fR \f(CW\*(C`done_testing()\*(C'\fR should never be called in an \f(CW\*(C`END { ... }\*(C'\fR block.
.PP
Sometimes you really don't know how many tests were run, or it's too
difficult to calculate. In which case you can leave off
\&\f(CW$number_of_tests_run\fR.
.PP
In some cases, you'll want to completely skip an entire testing script.
.PP
.Vb 1
\& use Test::More skip_all => $skip_reason;
.Ve
.PP
Your script will declare a skip with the reason why you skipped and
exit immediately with a zero (success). See Test::Harness for
details.
.PP
If you want to control what functions Test::More will export, you
have to use the 'import' option. For example, to import everything
but 'fail', you'd do:
.PP
.Vb 1
\& use Test::More tests => 23, import => [\*(Aq!fail\*(Aq];
.Ve
.PP
Alternatively, you can use the \f(CW\*(C`plan()\*(C'\fR function. Useful for when you
have to calculate the number of tests.
.PP
.Vb 2
\& use Test::More;
\& plan tests => keys %Stuff * 3;
.Ve
.PP
or for deciding between running the tests at all:
.PP
.Vb 7
\& use Test::More;
\& if( $^O eq \*(AqMacOS\*(Aq ) {
\& plan skip_all => \*(AqTest irrelevant on MacOS\*(Aq;
\& }
\& else {
\& plan tests => 42;
\& }
.Ve
.IP "\fBdone_testing\fR" 4
.IX Item "done_testing"
.Vb 2
\& done_testing();
\& done_testing($number_of_tests);
.Ve
.Sp
If you don't know how many tests you're going to run, you can issue
the plan when you're done running tests.
.Sp
\&\f(CW$number_of_tests\fR is the same as \f(CW\*(C`plan()\*(C'\fR, it's the number of tests you
expected to run. You can omit this, in which case the number of tests
you ran doesn't matter, just the fact that your tests ran to
conclusion.
.Sp
This is safer than and replaces the \*(L"no_plan\*(R" plan.
.Sp
\&\fBNote:\fR You must never put \f(CW\*(C`done_testing()\*(C'\fR inside an \f(CW\*(C`END { ... }\*(C'\fR block.
The plan is there to ensure your test does not exit before testing has
completed. If you use an \s-1END\s0 block you completely bypass this protection.
.SS "Test names"
.IX Subsection "Test names"
By convention, each test is assigned a number in order. This is
largely done automatically for you. However, it's often very useful to
assign a name to each test. Which would you rather see:
.PP
.Vb 3
\& ok 4
\& not ok 5
\& ok 6
.Ve
.PP
or
.PP
.Vb 3
\& ok 4 \- basic multi\-variable
\& not ok 5 \- simple exponential
\& ok 6 \- force == mass * acceleration
.Ve
.PP
The later gives you some idea of what failed. It also makes it easier
to find the test in your script, simply search for \*(L"simple
exponential\*(R".
.PP
All test functions take a name argument. It's optional, but highly
suggested that you use it.
.SS "I'm ok, you're not ok."
.IX Subsection "I'm ok, you're not ok."
The basic purpose of this module is to print out either \*(L"ok #\*(R" or \*(L"not
ok #\*(R" depending on if a given test succeeded or failed. Everything
else is just gravy.
.PP
All of the following print \*(L"ok\*(R" or \*(L"not ok\*(R" depending on if the test
succeeded or failed. They all also return true or false,
respectively.
.IP "\fBok\fR" 4
.IX Item "ok"
.Vb 1
\& ok($got eq $expected, $test_name);
.Ve
.Sp
This simply evaluates any expression (\f(CW\*(C`$got eq $expected\*(C'\fR is just a
simple example) and uses that to determine if the test succeeded or
failed. A true expression passes, a false one fails. Very simple.
.Sp
For example:
.Sp
.Vb 4
\& ok( $exp{9} == 81, \*(Aqsimple exponential\*(Aq );
\& ok( Film\->can(\*(Aqdb_Main\*(Aq), \*(Aqset_db()\*(Aq );
\& ok( $p\->tests == 4, \*(Aqsaw tests\*(Aq );
\& ok( !grep(!defined $_, @items), \*(Aqall items defined\*(Aq );
.Ve
.Sp
(Mnemonic: \*(L"This is ok.\*(R")
.Sp
\&\f(CW$test_name\fR is a very short description of the test that will be printed
out. It makes it very easy to find a test in your script when it fails
and gives others an idea of your intentions. \f(CW$test_name\fR is optional,
but we \fBvery\fR strongly encourage its use.
.Sp
Should an \f(CW\*(C`ok()\*(C'\fR fail, it will produce some diagnostics:
.Sp
.Vb 3
\& not ok 18 \- sufficient mucus
\& # Failed test \*(Aqsufficient mucus\*(Aq
\& # in foo.t at line 42.
.Ve
.Sp
This is the same as Test::Simple's \f(CW\*(C`ok()\*(C'\fR routine.
.IP "\fBis\fR" 4
.IX Item "is"
.PD 0
.IP "\fBisnt\fR" 4
.IX Item "isnt"
.PD
.Vb 2
\& is ( $got, $expected, $test_name );
\& isnt( $got, $expected, $test_name );
.Ve
.Sp
Similar to \f(CW\*(C`ok()\*(C'\fR, \f(CW\*(C`is()\*(C'\fR and \f(CW\*(C`isnt()\*(C'\fR compare their two arguments
with \f(CW\*(C`eq\*(C'\fR and \f(CW\*(C`ne\*(C'\fR respectively and use the result of that to
determine if the test succeeded or failed. So these:
.Sp
.Vb 2
\& # Is the ultimate answer 42?
\& is( ultimate_answer(), 42, "Meaning of Life" );
\&
\& # $foo isn\*(Aqt empty
\& isnt( $foo, \*(Aq\*(Aq, "Got some foo" );
.Ve
.Sp
are similar to these:
.Sp
.Vb 2
\& ok( ultimate_answer() eq 42, "Meaning of Life" );
\& ok( $foo ne \*(Aq\*(Aq, "Got some foo" );
.Ve
.Sp
\&\f(CW\*(C`undef\*(C'\fR will only ever match \f(CW\*(C`undef\*(C'\fR. So you can test a value
against \f(CW\*(C`undef\*(C'\fR like this:
.Sp
.Vb 1
\& is($not_defined, undef, "undefined as expected");
.Ve
.Sp
(Mnemonic: \*(L"This is that.\*(R" \*(L"This isn't that.\*(R")
.Sp
So why use these? They produce better diagnostics on failure. \f(CW\*(C`ok()\*(C'\fR
cannot know what you are testing for (beyond the name), but \f(CW\*(C`is()\*(C'\fR and
\&\f(CW\*(C`isnt()\*(C'\fR know what the test was and why it failed. For example this
test:
.Sp
.Vb 2
\& my $foo = \*(Aqwaffle\*(Aq; my $bar = \*(Aqyarblokos\*(Aq;
\& is( $foo, $bar, \*(AqIs foo the same as bar?\*(Aq );
.Ve
.Sp
Will produce something like this:
.Sp
.Vb 5
\& not ok 17 \- Is foo the same as bar?
\& # Failed test \*(AqIs foo the same as bar?\*(Aq
\& # in foo.t at line 139.
\& # got: \*(Aqwaffle\*(Aq
\& # expected: \*(Aqyarblokos\*(Aq
.Ve
.Sp
So you can figure out what went wrong without rerunning the test.
.Sp
You are encouraged to use \f(CW\*(C`is()\*(C'\fR and \f(CW\*(C`isnt()\*(C'\fR over \f(CW\*(C`ok()\*(C'\fR where possible,
however do not be tempted to use them to find out if something is
true or false!
.Sp
.Vb 2
\& # XXX BAD!
\& is( exists $brooklyn{tree}, 1, \*(AqA tree grows in Brooklyn\*(Aq );
.Ve
.Sp
This does not check if \f(CW\*(C`exists $brooklyn{tree}\*(C'\fR is true, it checks if
it returns 1. Very different. Similar caveats exist for false and 0.
In these cases, use \f(CW\*(C`ok()\*(C'\fR.
.Sp
.Vb 1
\& ok( exists $brooklyn{tree}, \*(AqA tree grows in Brooklyn\*(Aq );
.Ve
.Sp
A simple call to \f(CW\*(C`isnt()\*(C'\fR usually does not provide a strong test but there
are cases when you cannot say much more about a value than that it is
different from some other value:
.Sp
.Vb 1
\& new_ok $obj, "Foo";
\&
\& my $clone = $obj\->clone;
\& isa_ok $obj, "Foo", "Foo\->clone";
\&
\& isnt $obj, $clone, "clone() produces a different object";
.Ve
.Sp
For those grammatical pedants out there, there's an \f(CW\*(C`isn\*(Aqt()\*(C'\fR
function which is an alias of \f(CW\*(C`isnt()\*(C'\fR.
.IP "\fBlike\fR" 4
.IX Item "like"
.Vb 1
\& like( $got, qr/expected/, $test_name );
.Ve
.Sp
Similar to \f(CW\*(C`ok()\*(C'\fR, \f(CW\*(C`like()\*(C'\fR matches \f(CW$got\fR against the regex \f(CW\*(C`qr/expected/\*(C'\fR.
.Sp
So this:
.Sp
.Vb 1
\& like($got, qr/expected/, \*(Aqthis is like that\*(Aq);
.Ve
.Sp
is similar to:
.Sp
.Vb 1
\& ok( $got =~ m/expected/, \*(Aqthis is like that\*(Aq);
.Ve
.Sp
(Mnemonic \*(L"This is like that\*(R".)
.Sp
The second argument is a regular expression. It may be given as a
regex reference (i.e. \f(CW\*(C`qr//\*(C'\fR) or (for better compatibility with older
perls) as a string that looks like a regex (alternative delimiters are
currently not supported):
.Sp
.Vb 1
\& like( $got, \*(Aq/expected/\*(Aq, \*(Aqthis is like that\*(Aq );
.Ve
.Sp
Regex options may be placed on the end (\f(CW\*(Aq/expected/i\*(Aq\fR).
.Sp
Its advantages over \f(CW\*(C`ok()\*(C'\fR are similar to that of \f(CW\*(C`is()\*(C'\fR and \f(CW\*(C`isnt()\*(C'\fR. Better
diagnostics on failure.
.IP "\fBunlike\fR" 4
.IX Item "unlike"
.Vb 1
\& unlike( $got, qr/expected/, $test_name );
.Ve
.Sp
Works exactly as \f(CW\*(C`like()\*(C'\fR, only it checks if \f(CW$got\fR \fBdoes not\fR match the
given pattern.
.IP "\fBcmp_ok\fR" 4
.IX Item "cmp_ok"
.Vb 1
\& cmp_ok( $got, $op, $expected, $test_name );
.Ve
.Sp
Halfway between \f(CW\*(C`ok()\*(C'\fR and \f(CW\*(C`is()\*(C'\fR lies \f(CW\*(C`cmp_ok()\*(C'\fR. This allows you
to compare two arguments using any binary perl operator. The test
passes if the comparison is true and fails otherwise.
.Sp
.Vb 2
\& # ok( $got eq $expected );
\& cmp_ok( $got, \*(Aqeq\*(Aq, $expected, \*(Aqthis eq that\*(Aq );
\&
\& # ok( $got == $expected );
\& cmp_ok( $got, \*(Aq==\*(Aq, $expected, \*(Aqthis == that\*(Aq );
\&
\& # ok( $got && $expected );
\& cmp_ok( $got, \*(Aq&&\*(Aq, $expected, \*(Aqthis && that\*(Aq );
\& ...etc...
.Ve
.Sp
Its advantage over \f(CW\*(C`ok()\*(C'\fR is when the test fails you'll know what \f(CW$got\fR
and \f(CW$expected\fR were:
.Sp
.Vb 5
\& not ok 1
\& # Failed test in foo.t at line 12.
\& # \*(Aq23\*(Aq
\& # &&
\& # undef
.Ve
.Sp
It's also useful in those cases where you are comparing numbers and
\&\f(CW\*(C`is()\*(C'\fR's use of \f(CW\*(C`eq\*(C'\fR will interfere:
.Sp
.Vb 1
\& cmp_ok( $big_hairy_number, \*(Aq==\*(Aq, $another_big_hairy_number );
.Ve
.Sp
It's especially useful when comparing greater-than or smaller-than
relation between values:
.Sp
.Vb 1
\& cmp_ok( $some_value, \*(Aq<=\*(Aq, $upper_limit );
.Ve
.IP "\fBcan_ok\fR" 4
.IX Item "can_ok"
.Vb 2
\& can_ok($module, @methods);
\& can_ok($object, @methods);
.Ve
.Sp
Checks to make sure the \f(CW$module\fR or \f(CW$object\fR can do these \f(CW@methods\fR
(works with functions, too).
.Sp
.Vb 1
\& can_ok(\*(AqFoo\*(Aq, qw(this that whatever));
.Ve
.Sp
is almost exactly like saying:
.Sp
.Vb 4
\& ok( Foo\->can(\*(Aqthis\*(Aq) &&
\& Foo\->can(\*(Aqthat\*(Aq) &&
\& Foo\->can(\*(Aqwhatever\*(Aq)
\& );
.Ve
.Sp
only without all the typing and with a better interface. Handy for
quickly testing an interface.
.Sp
No matter how many \f(CW@methods\fR you check, a single \f(CW\*(C`can_ok()\*(C'\fR call counts
as one test. If you desire otherwise, use:
.Sp
.Vb 3
\& foreach my $meth (@methods) {
\& can_ok(\*(AqFoo\*(Aq, $meth);
\& }
.Ve
.IP "\fBisa_ok\fR" 4
.IX Item "isa_ok"
.Vb 3
\& isa_ok($object, $class, $object_name);
\& isa_ok($subclass, $class, $object_name);
\& isa_ok($ref, $type, $ref_name);
.Ve
.Sp
Checks to see if the given \f(CW\*(C`$object\->isa($class)\*(C'\fR. Also checks to make
sure the object was defined in the first place. Handy for this sort
of thing:
.Sp
.Vb 2
\& my $obj = Some::Module\->new;
\& isa_ok( $obj, \*(AqSome::Module\*(Aq );
.Ve
.Sp
where you'd otherwise have to write
.Sp
.Vb 2
\& my $obj = Some::Module\->new;
\& ok( defined $obj && $obj\->isa(\*(AqSome::Module\*(Aq) );
.Ve
.Sp
to safeguard against your test script blowing up.
.Sp
You can also test a class, to make sure that it has the right ancestor:
.Sp
.Vb 1
\& isa_ok( \*(AqVole\*(Aq, \*(AqRodent\*(Aq );
.Ve
.Sp
It works on references, too:
.Sp
.Vb 1
\& isa_ok( $array_ref, \*(AqARRAY\*(Aq );
.Ve
.Sp
The diagnostics of this test normally just refer to 'the object'. If
you'd like them to be more specific, you can supply an \f(CW$object_name\fR
(for example 'Test customer').
.IP "\fBnew_ok\fR" 4
.IX Item "new_ok"
.Vb 3
\& my $obj = new_ok( $class );
\& my $obj = new_ok( $class => \e@args );
\& my $obj = new_ok( $class => \e@args, $object_name );
.Ve
.Sp
A convenience function which combines creating an object and calling
\&\f(CW\*(C`isa_ok()\*(C'\fR on that object.
.Sp
It is basically equivalent to:
.Sp
.Vb 2
\& my $obj = $class\->new(@args);
\& isa_ok $obj, $class, $object_name;
.Ve
.Sp
If \f(CW@args\fR is not given, an empty list will be used.
.Sp
This function only works on \f(CW\*(C`new()\*(C'\fR and it assumes \f(CW\*(C`new()\*(C'\fR will return
just a single object which isa \f(CW$class\fR.
.IP "\fBsubtest\fR" 4
.IX Item "subtest"
.Vb 1
\& subtest $name => \e&code, @args;
.Ve
.Sp
\&\f(CW\*(C`subtest()\*(C'\fR runs the &code as its own little test with its own plan and
its own result. The main test counts this as a single test using the
result of the whole subtest to determine if its ok or not ok.
.Sp
For example...
.Sp
.Vb 1
\& use Test::More tests => 3;
\&
\& pass("First test");
\&
\& subtest \*(AqAn example subtest\*(Aq => sub {
\& plan tests => 2;
\&
\& pass("This is a subtest");
\& pass("So is this");
\& };
\&
\& pass("Third test");
.Ve
.Sp
This would produce.
.Sp
.Vb 8
\& 1..3
\& ok 1 \- First test
\& # Subtest: An example subtest
\& 1..2
\& ok 1 \- This is a subtest
\& ok 2 \- So is this
\& ok 2 \- An example subtest
\& ok 3 \- Third test
.Ve
.Sp
A subtest may call \f(CW\*(C`skip_all\*(C'\fR. No tests will be run, but the subtest is
considered a skip.
.Sp
.Vb 4
\& subtest \*(Aqskippy\*(Aq => sub {
\& plan skip_all => \*(Aqcuz I said so\*(Aq;
\& pass(\*(Aqthis test will never be run\*(Aq);
\& };
.Ve
.Sp
Returns true if the subtest passed, false otherwise.
.Sp
Due to how subtests work, you may omit a plan if you desire. This adds an
implicit \f(CW\*(C`done_testing()\*(C'\fR to the end of your subtest. The following two
subtests are equivalent:
.Sp
.Vb 5
\& subtest \*(Aqsubtest with implicit done_testing()\*(Aq, sub {
\& ok 1, \*(Aqsubtests with an implicit done testing should work\*(Aq;
\& ok 1, \*(Aq... and support more than one test\*(Aq;
\& ok 1, \*(Aq... no matter how many tests are run\*(Aq;
\& };
\&
\& subtest \*(Aqsubtest with explicit done_testing()\*(Aq, sub {
\& ok 1, \*(Aqsubtests with an explicit done testing should work\*(Aq;
\& ok 1, \*(Aq... and support more than one test\*(Aq;
\& ok 1, \*(Aq... no matter how many tests are run\*(Aq;
\& done_testing();
\& };
.Ve
.Sp
Extra arguments given to \f(CW\*(C`subtest\*(C'\fR are passed to the callback. For example:
.Sp
.Vb 4
\& sub my_subtest {
\& my $range = shift;
\& ...
\& }
\&
\& for my $range (1, 10, 100, 1000) {
\& subtest "testing range $range", \e&my_subtest, $range;
\& }
.Ve
.IP "\fBpass\fR" 4
.IX Item "pass"
.PD 0
.IP "\fBfail\fR" 4
.IX Item "fail"
.PD
.Vb 2
\& pass($test_name);
\& fail($test_name);
.Ve
.Sp
Sometimes you just want to say that the tests have passed. Usually
the case is you've got some complicated condition that is difficult to
wedge into an \f(CW\*(C`ok()\*(C'\fR. In this case, you can simply use \f(CW\*(C`pass()\*(C'\fR (to
declare the test ok) or fail (for not ok). They are synonyms for
\&\f(CWok(1)\fR and \f(CWok(0)\fR.
.Sp
Use these very, very, very sparingly.
.SS "Module tests"
.IX Subsection "Module tests"
Sometimes you want to test if a module, or a list of modules, can
successfully load. For example, you'll often want a first test which
simply loads all the modules in the distribution to make sure they
work before going on to do more complicated testing.
.PP
For such purposes we have \f(CW\*(C`use_ok\*(C'\fR and \f(CW\*(C`require_ok\*(C'\fR.
.IP "\fBrequire_ok\fR" 4
.IX Item "require_ok"
.Vb 2
\& require_ok($module);
\& require_ok($file);
.Ve
.Sp
Tries to \f(CW\*(C`require\*(C'\fR the given \f(CW$module\fR or \f(CW$file\fR. If it loads
successfully, the test will pass. Otherwise it fails and displays the
load error.
.Sp
\&\f(CW\*(C`require_ok\*(C'\fR will guess whether the input is a module name or a
filename.
.Sp
No exception will be thrown if the load fails.
.Sp
.Vb 2
\& # require Some::Module
\& require_ok "Some::Module";
\&
\& # require "Some/File.pl";
\& require_ok "Some/File.pl";
\&
\& # stop testing if any of your modules will not load
\& for my $module (@module) {
\& require_ok $module or BAIL_OUT "Can\*(Aqt load $module";
\& }
.Ve
.IP "\fBuse_ok\fR" 4
.IX Item "use_ok"
.Vb 2
\& BEGIN { use_ok($module); }
\& BEGIN { use_ok($module, @imports); }
.Ve
.Sp
Like \f(CW\*(C`require_ok\*(C'\fR, but it will \f(CW\*(C`use\*(C'\fR the \f(CW$module\fR in question and
only loads modules, not files.
.Sp
If you just want to test a module can be loaded, use \f(CW\*(C`require_ok\*(C'\fR.
.Sp
If you just want to load a module in a test, we recommend simply using
\&\f(CW\*(C`use\*(C'\fR directly. It will cause the test to stop.
.Sp
It's recommended that you run \f(CW\*(C`use_ok()\*(C'\fR inside a \s-1BEGIN\s0 block so its
functions are exported at compile-time and prototypes are properly
honored.
.Sp
If \f(CW@imports\fR are given, they are passed through to the use. So this:
.Sp
.Vb 1
\& BEGIN { use_ok(\*(AqSome::Module\*(Aq, qw(foo bar)) }
.Ve
.Sp
is like doing this:
.Sp
.Vb 1
\& use Some::Module qw(foo bar);
.Ve
.Sp
Version numbers can be checked like so:
.Sp
.Vb 2
\& # Just like "use Some::Module 1.02"
\& BEGIN { use_ok(\*(AqSome::Module\*(Aq, 1.02) }
.Ve
.Sp
Don't try to do this:
.Sp
.Vb 2
\& BEGIN {
\& use_ok(\*(AqSome::Module\*(Aq);
\&
\& ...some code that depends on the use...
\& ...happening at compile time...
\& }
.Ve
.Sp
because the notion of \*(L"compile-time\*(R" is relative. Instead, you want:
.Sp
.Vb 2
\& BEGIN { use_ok(\*(AqSome::Module\*(Aq) }
\& BEGIN { ...some code that depends on the use... }
.Ve
.Sp
If you want the equivalent of \f(CW\*(C`use Foo ()\*(C'\fR, use a module but not
import anything, use \f(CW\*(C`require_ok\*(C'\fR.
.Sp
.Vb 1
\& BEGIN { require_ok "Foo" }
.Ve
.SS "Complex data structures"
.IX Subsection "Complex data structures"
Not everything is a simple eq check or regex. There are times you
need to see if two data structures are equivalent. For these
instances Test::More provides a handful of useful functions.
.PP
\&\fB\s-1NOTE\s0\fR I'm not quite sure what will happen with filehandles.
.IP "\fBis_deeply\fR" 4
.IX Item "is_deeply"
.Vb 1
\& is_deeply( $got, $expected, $test_name );
.Ve
.Sp
Similar to \f(CW\*(C`is()\*(C'\fR, except that if \f(CW$got\fR and \f(CW$expected\fR are references, it
does a deep comparison walking each data structure to see if they are
equivalent. If the two structures are different, it will display the
place where they start differing.
.Sp
\&\f(CW\*(C`is_deeply()\*(C'\fR compares the dereferenced values of references, the
references themselves (except for their type) are ignored. This means
aspects such as blessing and ties are not considered \*(L"different\*(R".
.Sp
\&\f(CW\*(C`is_deeply()\*(C'\fR currently has very limited handling of function reference
and globs. It merely checks if they have the same referent. This may
improve in the future.
.Sp
Test::Differences and Test::Deep provide more in-depth functionality
along these lines.
.Sp
\&\fB\s-1NOTE\s0\fR \fBis_deeply()\fR has limitations when it comes to comparing strings and
refs:
.Sp
.Vb 4
\& my $path = path(\*(Aq.\*(Aq);
\& my $hash = {};
\& is_deeply( $path, "$path" ); # ok
\& is_deeply( $hash, "$hash" ); # fail
.Ve
.Sp
This happens because is_deeply will unoverload all arguments unconditionally.
It is probably best not to use is_deeply with overloading. For legacy reasons
this is not likely to ever be fixed. If you would like a much better tool for
this you should see Test2::Suite Specifically Test2::Tools::Compare has
an \f(CW\*(C`is()\*(C'\fR function that works like \f(CW\*(C`is_deeply\*(C'\fR with many improvements.
.SS "Diagnostics"
.IX Subsection "Diagnostics"
If you pick the right test function, you'll usually get a good idea of
what went wrong when it failed. But sometimes it doesn't work out
that way. So here we have ways for you to write your own diagnostic
messages which are safer than just \f(CW\*(C`print STDERR\*(C'\fR.
.IP "\fBdiag\fR" 4
.IX Item "diag"
.Vb 1
\& diag(@diagnostic_message);
.Ve
.Sp
Prints a diagnostic message which is guaranteed not to interfere with
test output. Like \f(CW\*(C`print\*(C'\fR \f(CW@diagnostic_message\fR is simply concatenated
together.
.Sp
Returns false, so as to preserve failure.
.Sp
Handy for this sort of thing:
.Sp
.Vb 2
\& ok( grep(/foo/, @users), "There\*(Aqs a foo user" ) or
\& diag("Since there\*(Aqs no foo, check that /etc/bar is set up right");
.Ve
.Sp
which would produce:
.Sp
.Vb 4
\& not ok 42 \- There\*(Aqs a foo user
\& # Failed test \*(AqThere\*(Aqs a foo user\*(Aq
\& # in foo.t at line 52.
\& # Since there\*(Aqs no foo, check that /etc/bar is set up right.
.Ve
.Sp
You might remember \f(CW\*(C`ok() or diag()\*(C'\fR with the mnemonic \f(CW\*(C`open() or
die()\*(C'\fR.
.Sp
\&\fB\s-1NOTE\s0\fR The exact formatting of the diagnostic output is still
changing, but it is guaranteed that whatever you throw at it won't
interfere with the test.
.IP "\fBnote\fR" 4
.IX Item "note"
.Vb 1
\& note(@diagnostic_message);
.Ve
.Sp
Like \f(CW\*(C`diag()\*(C'\fR, except the message will not be seen when the test is run
in a harness. It will only be visible in the verbose \s-1TAP\s0 stream.
.Sp
Handy for putting in notes which might be useful for debugging, but
don't indicate a problem.
.Sp
.Vb 1
\& note("Tempfile is $tempfile");
.Ve
.IP "\fBexplain\fR" 4
.IX Item "explain"
.Vb 1
\& my @dump = explain @diagnostic_message;
.Ve
.Sp
Will dump the contents of any references in a human readable format.
Usually you want to pass this into \f(CW\*(C`note\*(C'\fR or \f(CW\*(C`diag\*(C'\fR.
.Sp
Handy for things like...
.Sp
.Vb 1
\& is_deeply($have, $want) || diag explain $have;
.Ve
.Sp
or
.Sp
.Vb 2
\& note explain \e%args;
\& Some::Class\->method(%args);
.Ve
.SS "Conditional tests"
.IX Subsection "Conditional tests"
Sometimes running a test under certain conditions will cause the
test script to die. A certain function or method isn't implemented
(such as \f(CW\*(C`fork()\*(C'\fR on MacOS), some resource isn't available (like a
net connection) or a module isn't available. In these cases it's
necessary to skip tests, or declare that they are supposed to fail
but will work in the future (a todo test).
.PP
For more details on the mechanics of skip and todo tests see
Test::Harness.
.PP
The way Test::More handles this is with a named block. Basically, a
block of tests which can be skipped over or made todo. It's best if I
just show you...
.IP "\fB\s-1SKIP: BLOCK\s0\fR" 4
.IX Item "SKIP: BLOCK"
.Vb 2
\& SKIP: {
\& skip $why, $how_many if $condition;
\&
\& ...normal testing code goes here...
\& }
.Ve
.Sp
This declares a block of tests that might be skipped, \f(CW$how_many\fR tests
there are, \f(CW$why\fR and under what \f(CW$condition\fR to skip them. An example is
the easiest way to illustrate:
.Sp
.Vb 2
\& SKIP: {
\& eval { require HTML::Lint };
\&
\& skip "HTML::Lint not installed", 2 if $@;
\&
\& my $lint = new HTML::Lint;
\& isa_ok( $lint, "HTML::Lint" );
\&
\& $lint\->parse( $html );
\& is( $lint\->errors, 0, "No errors found in HTML" );
\& }
.Ve
.Sp
If the user does not have HTML::Lint installed, the whole block of
code \fIwon't be run at all\fR. Test::More will output special ok's
which Test::Harness interprets as skipped, but passing, tests.
.Sp
It's important that \f(CW$how_many\fR accurately reflects the number of tests
in the \s-1SKIP\s0 block so the # of tests run will match up with your plan.
If your plan is \f(CW\*(C`no_plan\*(C'\fR \f(CW$how_many\fR is optional and will default to 1.
.Sp
It's perfectly safe to nest \s-1SKIP\s0 blocks. Each \s-1SKIP\s0 block must have
the label \f(CW\*(C`SKIP\*(C'\fR, or Test::More can't work its magic.
.Sp
You don't skip tests which are failing because there's a bug in your
program, or for which you don't yet have code written. For that you
use \s-1TODO.\s0 Read on.
.IP "\fB\s-1TODO: BLOCK\s0\fR" 4
.IX Item "TODO: BLOCK"
.Vb 2
\& TODO: {
\& local $TODO = $why if $condition;
\&
\& ...normal testing code goes here...
\& }
.Ve
.Sp
Declares a block of tests you expect to fail and \f(CW$why\fR. Perhaps it's
because you haven't fixed a bug or haven't finished a new feature:
.Sp
.Vb 2
\& TODO: {
\& local $TODO = "URI::Geller not finished";
\&
\& my $card = "Eight of clubs";
\& is( URI::Geller\->your_card, $card, \*(AqIs THIS your card?\*(Aq );
\&
\& my $spoon;
\& URI::Geller\->bend_spoon;
\& is( $spoon, \*(Aqbent\*(Aq, "Spoon bending, that\*(Aqs original" );
\& }
.Ve
.Sp
With a todo block, the tests inside are expected to fail. Test::More
will run the tests normally, but print out special flags indicating
they are \*(L"todo\*(R". Test::Harness will interpret failures as being ok.
Should anything succeed, it will report it as an unexpected success.
You then know the thing you had todo is done and can remove the
\&\s-1TODO\s0 flag.
.Sp
The nice part about todo tests, as opposed to simply commenting out a
block of tests, is that it is like having a programmatic todo list. You know
how much work is left to be done, you're aware of what bugs there are,
and you'll know immediately when they're fixed.
.Sp
Once a todo test starts succeeding, simply move it outside the block.
When the block is empty, delete it.
.Sp
Note that, if you leave \f(CW$TODO\fR unset or undef, Test::More reports failures
as normal. This can be useful to mark the tests as expected to fail only
in certain conditions, e.g.:
.Sp
.Vb 2
\& TODO: {
\& local $TODO = "$^O doesn\*(Aqt work yet. :(" if !_os_is_supported($^O);
\&
\& ...
\& }
.Ve
.IP "\fBtodo_skip\fR" 4
.IX Item "todo_skip"
.Vb 2
\& TODO: {
\& todo_skip $why, $how_many if $condition;
\&
\& ...normal testing code...
\& }
.Ve
.Sp
With todo tests, it's best to have the tests actually run. That way
you'll know when they start passing. Sometimes this isn't possible.
Often a failing test will cause the whole program to die or hang, even
inside an \f(CW\*(C`eval BLOCK\*(C'\fR with and using \f(CW\*(C`alarm\*(C'\fR. In these extreme
cases you have no choice but to skip over the broken tests entirely.
.Sp
The syntax and behavior is similar to a \f(CW\*(C`SKIP: BLOCK\*(C'\fR except the
tests will be marked as failing but todo. Test::Harness will
interpret them as passing.
.IP "When do I use \s-1SKIP\s0 vs. \s-1TODO\s0?" 4
.IX Item "When do I use SKIP vs. TODO?"
\&\fBIf it's something the user might not be able to do\fR, use \s-1SKIP.\s0
This includes optional modules that aren't installed, running under
an \s-1OS\s0 that doesn't have some feature (like \f(CW\*(C`fork()\*(C'\fR or symlinks), or maybe
you need an Internet connection and one isn't available.
.Sp
\&\fBIf it's something the programmer hasn't done yet\fR, use \s-1TODO.\s0 This
is for any code you haven't written yet, or bugs you have yet to fix,
but want to put tests in your testing script (always a good idea).
.SS "Test control"
.IX Subsection "Test control"
.IP "\fB\s-1BAIL_OUT\s0\fR" 4
.IX Item "BAIL_OUT"
.Vb 1
\& BAIL_OUT($reason);
.Ve
.Sp
Indicates to the harness that things are going so badly all testing
should terminate. This includes the running of any additional test scripts.
.Sp
This is typically used when testing cannot continue such as a critical
module failing to compile or a necessary external utility not being
available such as a database connection failing.
.Sp
The test will exit with 255.
.Sp
For even better control look at Test::Most.
.SS "Discouraged comparison functions"
.IX Subsection "Discouraged comparison functions"
The use of the following functions is discouraged as they are not
actually testing functions and produce no diagnostics to help figure
out what went wrong. They were written before \f(CW\*(C`is_deeply()\*(C'\fR existed
because I couldn't figure out how to display a useful diff of two
arbitrary data structures.
.PP
These functions are usually used inside an \f(CW\*(C`ok()\*(C'\fR.
.PP
.Vb 1
\& ok( eq_array(\e@got, \e@expected) );
.Ve
.PP
\&\f(CW\*(C`is_deeply()\*(C'\fR can do that better and with diagnostics.
.PP
.Vb 1
\& is_deeply( \e@got, \e@expected );
.Ve
.PP
They may be deprecated in future versions.
.IP "\fBeq_array\fR" 4
.IX Item "eq_array"
.Vb 1
\& my $is_eq = eq_array(\e@got, \e@expected);
.Ve
.Sp
Checks if two arrays are equivalent. This is a deep check, so
multi-level structures are handled correctly.
.IP "\fBeq_hash\fR" 4
.IX Item "eq_hash"
.Vb 1
\& my $is_eq = eq_hash(\e%got, \e%expected);
.Ve
.Sp
Determines if the two hashes contain the same keys and values. This
is a deep check.
.IP "\fBeq_set\fR" 4
.IX Item "eq_set"
.Vb 1
\& my $is_eq = eq_set(\e@got, \e@expected);
.Ve
.Sp
Similar to \f(CW\*(C`eq_array()\*(C'\fR, except the order of the elements is \fBnot\fR
important. This is a deep check, but the irrelevancy of order only
applies to the top level.
.Sp
.Vb 1
\& ok( eq_set(\e@got, \e@expected) );
.Ve
.Sp
Is better written:
.Sp
.Vb 1
\& is_deeply( [sort @got], [sort @expected] );
.Ve
.Sp
\&\fB\s-1NOTE\s0\fR By historical accident, this is not a true set comparison.
While the order of elements does not matter, duplicate elements do.
.Sp
\&\fB\s-1NOTE\s0\fR \f(CW\*(C`eq_set()\*(C'\fR does not know how to deal with references at the top
level. The following is an example of a comparison which might not work:
.Sp
.Vb 1
\& eq_set([\e1, \e2], [\e2, \e1]);
.Ve
.Sp
Test::Deep contains much better set comparison functions.
.SS "Extending and Embedding Test::More"
.IX Subsection "Extending and Embedding Test::More"
Sometimes the Test::More interface isn't quite enough. Fortunately,
Test::More is built on top of Test::Builder which provides a single,
unified backend for any test library to use. This means two test
libraries which both use <Test::Builder> \fBcan\fR be used together in the
same program>.
.PP
If you simply want to do a little tweaking of how the tests behave,
you can access the underlying Test::Builder object like so:
.IP "\fBbuilder\fR" 4
.IX Item "builder"
.Vb 1
\& my $test_builder = Test::More\->builder;
.Ve
.Sp
Returns the Test::Builder object underlying Test::More for you to play
with.
.SH "EXIT CODES"
.IX Header "EXIT CODES"
If all your tests passed, Test::Builder will exit with zero (which is
normal). If anything failed it will exit with how many failed. If
you run less (or more) tests than you planned, the missing (or extras)
will be considered failures. If no tests were ever run Test::Builder
will throw a warning and exit with 255. If the test died, even after
having successfully completed all its tests, it will still be
considered a failure and will exit with 255.
.PP
So the exit codes are...
.PP
.Vb 3
\& 0 all tests successful
\& 255 test died or all passed but wrong # of tests run
\& any other number how many failed (including missing or extras)
.Ve
.PP
If you fail more than 254 tests, it will be reported as 254.
.PP
\&\fB\s-1NOTE\s0\fR This behavior may go away in future versions.
.SH "COMPATIBILITY"
.IX Header "COMPATIBILITY"
Test::More works with Perls as old as 5.8.1.
.PP
Thread support is not very reliable before 5.10.1, but that's
because threads are not very reliable before 5.10.1.
.PP
Although Test::More has been a core module in versions of Perl since 5.6.2, Test::More has evolved since then, and not all of the features you're used to will be present in the shipped version of Test::More. If you are writing a module, don't forget to indicate in your package metadata the minimum version of Test::More that you require. For instance, if you want to use \f(CW\*(C`done_testing()\*(C'\fR but want your test script to run on Perl 5.10.0, you will need to explicitly require Test::More > 0.88.
.PP
Key feature milestones include:
.IP "subtests" 4
.IX Item "subtests"
Subtests were released in Test::More 0.94, which came with Perl 5.12.0. Subtests did not implicitly call \f(CW\*(C`done_testing()\*(C'\fR until 0.96; the first Perl with that fix was Perl 5.14.0 with 0.98.
.ie n .IP """done_testing()""" 4
.el .IP "\f(CWdone_testing()\fR" 4
.IX Item "done_testing()"
This was released in Test::More 0.88 and first shipped with Perl in 5.10.1 as part of Test::More 0.92.
.ie n .IP """cmp_ok()""" 4
.el .IP "\f(CWcmp_ok()\fR" 4
.IX Item "cmp_ok()"
Although \f(CW\*(C`cmp_ok()\*(C'\fR was introduced in 0.40, 0.86 fixed an important bug to make it safe for overloaded objects; the fixed first shipped with Perl in 5.10.1 as part of Test::More 0.92.
.ie n .IP """new_ok()"" ""note()"" and ""explain()""" 4
.el .IP "\f(CWnew_ok()\fR \f(CWnote()\fR and \f(CWexplain()\fR" 4
.IX Item "new_ok() note() and explain()"
These were was released in Test::More 0.82, and first shipped with Perl in 5.10.1 as part of Test::More 0.92.
.PP
There is a full version history in the Changes file, and the Test::More versions included as core can be found using Module::CoreList:
.PP
.Vb 1
\& $ corelist \-a Test::More
.Ve
.SH "CAVEATS and NOTES"
.IX Header "CAVEATS and NOTES"
.ie n .IP "utf8 / ""Wide character in print""" 4
.el .IP "utf8 / ``Wide character in print''" 4
.IX Item "utf8 / Wide character in print"
If you use utf8 or other non-ASCII characters with Test::More you
might get a \*(L"Wide character in print\*(R" warning. Using
\&\f(CW\*(C`binmode STDOUT, ":utf8"\*(C'\fR will not fix it.
Test::Builder (which powers
Test::More) duplicates \s-1STDOUT\s0 and \s-1STDERR.\s0 So any changes to them,
including changing their output disciplines, will not be seen by
Test::More.
.Sp
One work around is to apply encodings to \s-1STDOUT\s0 and \s-1STDERR\s0 as early
as possible and before Test::More (or any other Test module) loads.
.Sp
.Vb 2
\& use open \*(Aq:std\*(Aq, \*(Aq:encoding(utf8)\*(Aq;
\& use Test::More;
.Ve
.Sp
A more direct work around is to change the filehandles used by
Test::Builder.
.Sp
.Vb 4
\& my $builder = Test::More\->builder;
\& binmode $builder\->output, ":encoding(utf8)";
\& binmode $builder\->failure_output, ":encoding(utf8)";
\& binmode $builder\->todo_output, ":encoding(utf8)";
.Ve
.IP "Overloaded objects" 4
.IX Item "Overloaded objects"
String overloaded objects are compared \fBas strings\fR (or in \f(CW\*(C`cmp_ok()\*(C'\fR's
case, strings or numbers as appropriate to the comparison op). This
prevents Test::More from piercing an object's interface allowing
better blackbox testing. So if a function starts returning overloaded
objects instead of bare strings your tests won't notice the
difference. This is good.
.Sp
However, it does mean that functions like \f(CW\*(C`is_deeply()\*(C'\fR cannot be used to
test the internals of string overloaded objects. In this case I would
suggest Test::Deep which contains more flexible testing functions for
complex data structures.
.IP "Threads" 4
.IX Item "Threads"
Test::More will only be aware of threads if \f(CW\*(C`use threads\*(C'\fR has been done
\&\fIbefore\fR Test::More is loaded. This is ok:
.Sp
.Vb 2
\& use threads;
\& use Test::More;
.Ve
.Sp
This may cause problems:
.Sp
.Vb 2
\& use Test::More
\& use threads;
.Ve
.Sp
5.8.1 and above are supported. Anything below that has too many bugs.
.SH "HISTORY"
.IX Header "HISTORY"
This is a case of convergent evolution with Joshua Pritikin's Test
module. I was largely unaware of its existence when I'd first
written my own \f(CW\*(C`ok()\*(C'\fR routines. This module exists because I can't
figure out how to easily wedge test names into Test's interface (along
with a few other problems).
.PP
The goal here is to have a testing utility that's simple to learn,
quick to use and difficult to trip yourself up with while still
providing more flexibility than the existing Test.pm. As such, the
names of the most common routines are kept tiny, special cases and
magic side-effects are kept to a minimum. \s-1WYSIWYG.\s0
.SH "SEE ALSO"
.IX Header "SEE ALSO"
.SS ""
.IX Subsection ""
.SS "\s-1ALTERNATIVES\s0"
.IX Subsection "ALTERNATIVES"
Test2::Suite is the most recent and modern set of tools for testing.
.PP
Test::Simple if all this confuses you and you just want to write
some tests. You can upgrade to Test::More later (it's forward
compatible).
.PP
Test::Legacy tests written with Test.pm, the original testing
module, do not play well with other testing libraries. Test::Legacy
emulates the Test.pm interface and does play well with others.
.SS "\s-1ADDITIONAL LIBRARIES\s0"
.IX Subsection "ADDITIONAL LIBRARIES"
Test::Differences for more ways to test complex data structures.
And it plays well with Test::More.
.PP
Test::Class is like xUnit but more perlish.
.PP
Test::Deep gives you more powerful complex data structure testing.
.PP
Test::Inline shows the idea of embedded testing.
.PP
Mock::Quick The ultimate mocking library. Easily spawn objects defined on
the fly. Can also override, block, or reimplement packages as needed.
.PP
Test::FixtureBuilder Quickly define fixture data for unit tests.
.SS "\s-1OTHER COMPONENTS\s0"
.IX Subsection "OTHER COMPONENTS"
Test::Harness is the test runner and output interpreter for Perl.
It's the thing that powers \f(CW\*(C`make test\*(C'\fR and where the \f(CW\*(C`prove\*(C'\fR utility
comes from.
.SS "\s-1BUNDLES\s0"
.IX Subsection "BUNDLES"
Test::Most Most commonly needed test functions and features.
.SH "AUTHORS"
.IX Header "AUTHORS"
Michael G Schwern <schwern@pobox.com> with much inspiration
from Joshua Pritikin's Test module and lots of help from Barrie
Slaymaker, Tony Bowden, blackstar.co.uk, chromatic, Fergal Daly and
the perl-qa gang.
.SH "MAINTAINERS"
.IX Header "MAINTAINERS"
.IP "Chad Granum <exodist@cpan.org>" 4
.IX Item "Chad Granum <exodist@cpan.org>"
.SH "BUGS"
.IX Header "BUGS"
See \fIhttps://github.com/Test\-More/test\-more/issues\fR to report and view bugs.
.SH "SOURCE"
.IX Header "SOURCE"
The source code repository for Test::More can be found at
\&\fIhttp://github.com/Test\-More/test\-more/\fR.
.SH "COPYRIGHT"
.IX Header "COPYRIGHT"
Copyright 2001\-2008 by Michael G Schwern <schwern@pobox.com>.
.PP
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
.PP
See \fIhttp://www.perl.com/perl/misc/Artistic.html\fR
|