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
|
use strict;
use warnings;
## skip Test::Tabs
use Test::More;
use Test::Requires '5.008001';
use Test::Fatal;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MyTest::TestClass::String;
my $CLASS = q[MyTest::TestClass::String];
## append
can_ok( $CLASS, 'my_append' );
subtest 'Testing my_append' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
$object->my_append( 'bar' );
is( $object->attr, 'foobar', q{$object->attr is 'foobar'} );
};
is( $e, undef, 'no exception thrown running append example' );
};
## chomp
can_ok( $CLASS, 'my_chomp' );
## chop
can_ok( $CLASS, 'my_chop' );
## clear
can_ok( $CLASS, 'my_clear' );
subtest 'Testing my_clear' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
$object->my_clear;
note $object->attr; ## nothing
};
is( $e, undef, 'no exception thrown running clear example' );
};
## cmp
can_ok( $CLASS, 'my_cmp' );
## cmpi
can_ok( $CLASS, 'my_cmpi' );
## contains
can_ok( $CLASS, 'my_contains' );
## contains_i
can_ok( $CLASS, 'my_contains_i' );
## ends_with
can_ok( $CLASS, 'my_ends_with' );
## ends_with_i
can_ok( $CLASS, 'my_ends_with_i' );
## eq
can_ok( $CLASS, 'my_eq' );
## eqi
can_ok( $CLASS, 'my_eqi' );
## fc
can_ok( $CLASS, 'my_fc' );
## ge
can_ok( $CLASS, 'my_ge' );
## gei
can_ok( $CLASS, 'my_gei' );
## get
can_ok( $CLASS, 'my_get' );
subtest 'Testing my_get' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
is( $object->my_get, 'foo', q{$object->my_get is 'foo'} );
};
is( $e, undef, 'no exception thrown running get example' );
};
## gt
can_ok( $CLASS, 'my_gt' );
## gti
can_ok( $CLASS, 'my_gti' );
## inc
can_ok( $CLASS, 'my_inc' );
## lc
can_ok( $CLASS, 'my_lc' );
## le
can_ok( $CLASS, 'my_le' );
## lei
can_ok( $CLASS, 'my_lei' );
## length
can_ok( $CLASS, 'my_length' );
subtest 'Testing my_length' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
is( $object->my_length, 3, q{$object->my_length is 3} );
};
is( $e, undef, 'no exception thrown running length example' );
};
## lt
can_ok( $CLASS, 'my_lt' );
## lti
can_ok( $CLASS, 'my_lti' );
## match
can_ok( $CLASS, 'my_match' );
subtest 'Testing my_match' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
if ( $object->my_match( '^f..$' ) ) {
note 'matched!';
}
};
is( $e, undef, 'no exception thrown running match example' );
};
## match_i
can_ok( $CLASS, 'my_match_i' );
subtest 'Testing my_match_i' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
if ( $object->my_match_i( '^F..$' ) ) {
note 'matched!';
}
};
is( $e, undef, 'no exception thrown running match_i example' );
};
## ne
can_ok( $CLASS, 'my_ne' );
## nei
can_ok( $CLASS, 'my_nei' );
## prepend
can_ok( $CLASS, 'my_prepend' );
subtest 'Testing my_prepend' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
$object->my_prepend( 'bar' );
is( $object->attr, 'barfoo', q{$object->attr is 'barfoo'} );
};
is( $e, undef, 'no exception thrown running prepend example' );
};
## replace
can_ok( $CLASS, 'my_replace' );
subtest 'Testing my_replace' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
$object->my_replace( 'o' => 'a' );
is( $object->attr, 'fao', q{$object->attr is 'fao'} );
my $object2 = $CLASS->new( attr => 'foo' );
$object2->my_replace( qr/O/i => sub { return 'e' } );
is( $object2->attr, 'feo', q{$object2->attr is 'feo'} );
};
is( $e, undef, 'no exception thrown running replace example' );
};
## replace_globally
can_ok( $CLASS, 'my_replace_globally' );
subtest 'Testing my_replace_globally' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
$object->my_replace_globally( 'o' => 'a' );
is( $object->attr, 'faa', q{$object->attr is 'faa'} );
my $object2 = $CLASS->new( attr => 'foo' );
$object2->my_replace_globally( qr/O/i => sub { return 'e' } );
is( $object2->attr, 'fee', q{$object2->attr is 'fee'} );
};
is( $e, undef, 'no exception thrown running replace_globally example' );
};
## reset
can_ok( $CLASS, 'my_reset' );
## set
can_ok( $CLASS, 'my_set' );
subtest 'Testing my_set' => sub {
my $e = exception {
my $object = $CLASS->new( attr => 'foo' );
$object->my_set( 'bar' );
is( $object->attr, 'bar', q{$object->attr is 'bar'} );
};
is( $e, undef, 'no exception thrown running set example' );
};
## starts_with
can_ok( $CLASS, 'my_starts_with' );
## starts_with_i
can_ok( $CLASS, 'my_starts_with_i' );
## substr
can_ok( $CLASS, 'my_substr' );
## uc
can_ok( $CLASS, 'my_uc' );
done_testing;
|