File: 02-perl.t

package info (click to toggle)
libsyntax-highlight-engine-kate-perl 0.05%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,272 kB
  • ctags: 1,963
  • sloc: perl: 77,501; ruby: 176; asm: 166; cpp: 144; sh: 139; jsp: 128; haskell: 116; f90: 99; python: 98; ml: 75; xml: 43; yacc: 37; ansic: 32; tcl: 29; lisp: 24; makefile: 22; awk: 13; php: 5
file content (12 lines) | stat: -rw-r--r-- 216 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12

use strict;
use warnings;

use Test::More tests => 1;

use Syntax::Highlight::Engine::Kate;
my $hl = Syntax::Highlight::Engine::Kate->new(
    language => 'Perl',
);

isa_ok($hl, 'Syntax::Highlight::Engine::Kate');