Class-Void
view release on metacpan or search on metacpan
use strict;
use Test::Simple tests => 11;
use Class::Void;
sub is_empty_string($) {
return 1 if shift eq "";
return
}
my $null = Class::Void->bla->blub->foo->bar;
ok(is_empty_string($null), "basic tests for empty string behavior");
$null = Class::Void->new;
( run in 0.650 second using v1.01-cache-2.11-cpan-1f129e94a17 )