File: ppi_token_dashedword.t

package info (click to toggle)
libppi-perl 1.220-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,876 kB
  • ctags: 869
  • sloc: perl: 13,327; makefile: 8
file content (36 lines) | stat: -rwxr-xr-x 784 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/perl

# Unit testing for PPI::Token::DashedWord

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
	no warnings 'once';
	$PPI::XS_DISABLE = 1;
	$PPI::Lexer::X_TOKENIZER ||= $ENV{X_TOKENIZER};
}
use Test::More tests => 10;
use Test::NoWarnings;
use PPI;


LITERAL: {
	my @pairs = (
		"-foo",        '-foo',
		"-Foo::Bar",   '-Foo::Bar',
		"-Foo'Bar",    '-Foo::Bar',
	);
	while ( @pairs ) {
		my $from  = shift @pairs;
		my $to    = shift @pairs;
		my $doc   = PPI::Document->new( \"( $from => 1 );" );
		isa_ok( $doc, 'PPI::Document' );
		my $word = $doc->find_first('Token::DashedWord');
		SKIP: {
			skip( "PPI::Token::DashedWord is deactivated", 2 );
			isa_ok( $word, 'PPI::Token::DashedWord' );
			is( $word && $word->literal, $to, "The source $from becomes $to ok" );
		}
	}
}