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
|
#!/usr/bin/perl
# Unit testing for PPI::Token::Quote
use lib 't/lib';
use PPI::Test::pragmas;
use Test::More tests => 16 + ($ENV{AUTHOR_TESTING} ? 1 : 0);
use PPI ();
use Helper 'safe_new';
STRING: {
# Prove what we say in the ->string docs
my $Document = safe_new \<<'END_PERL';
'foo'
"foo"
q{foo}
qq <foo>
END_PERL
my $quotes = $Document->find('Token::Quote');
is( ref($quotes), 'ARRAY', 'Found quotes' );
is( scalar(@$quotes), 4, 'Found 4 quotes' );
foreach my $Quote ( @$quotes ) {
isa_ok( $Quote, 'PPI::Token::Quote');
can_ok( $Quote, 'string' );
is( $Quote->string, 'foo', '->string returns "foo" for '
. $Quote->content );
}
}
|