This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Brendan Byrd is now a perl AUTHOR
[perl5.git] / ext / arybase / t / substr.t
CommitLineData
36b2db7e 1use warnings; no warnings 'deprecated';
b82b06b8
FC
2use strict;
3
4use Test::More tests => 6;
5
6our $t;
7
8$[ = 3;
9
10$t = "abcdef";
11is substr($t, 5), "cdef";
12is $t, "abcdef";
13
14$t = "abcdef";
15is substr($t, 5, 2), "cd";
16is $t, "abcdef";
17
18$t = "abcdef";
19is substr($t, 5, 2, "xyz"), "cd";
20is $t, "abxyzef";
21
221;