File: 05_script.t

package info (click to toggle)
libtest-leaktrace-perl 0.13-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 412 kB
  • ctags: 879
  • sloc: ansic: 3,215; perl: 1,789; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!perl -w

use strict;
use Test::More tests => 1;
BEGIN{
	pass 'script interface';
}

use Test::LeakTrace::Script;

my $i = 0;


for(1 .. 10){
	my @array = (1 .. 10);
	my %hash  = (foo => 'bar');

	$i++;
}