File: recursive_tokenize.t

package info (click to toggle)
libcompiler-lexer-perl 0.23-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 612 kB
  • sloc: cpp: 5,127; perl: 1,167; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;
use Compiler::Lexer;
use Test::More;

my $results = Compiler::Lexer->new('-')->recursive_tokenize(<<'SCRIPT');
use Compiler::Lexer;

my $lexer = Compiler::Lexer->new('-');

SCRIPT

ok(scalar @{$results->{'Compiler::Lexer'}} > 0);

done_testing;