We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb36027 commit 33df2feCopy full SHA for 33df2fe
dist/Devel-PPPort/parts/inc/ppphtest
@@ -728,11 +728,14 @@ for (@o) {
728
ok(@o > 100);
729
is($fail, 0);
730
731
-ok(exists $p{utf8_distance});
732
-is($p{utf8_distance}, '5.6.0');
733
-
734
-ok(exists $p{save_generic_svref});
735
-is($p{save_generic_svref}, '5.005_03');
+ok(exists $p{utf8_distance},
+ "found API utf8_distance");
+is($p{utf8_distance}, '5.6.0',
+ "utf8_distance introduced in 5.6.0");
+
736
+ok(exists $p{save_generic_svref}, "found API save_generic_svref");
737
+is($p{save_generic_svref}, '5.005_03',
738
+ "save_generic_svref introduced in 5.005_03");
739
740
===============================================================================
741
0 commit comments