File: init.t

package info (click to toggle)
libcgi-pm-perl 4.68-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,028 kB
  • sloc: perl: 6,082; makefile: 9
file content (13 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin perl -w

use strict;
use Test::More tests => 1;

use CGI;


$_ = "abcdefghijklmnopq";
my $IN;
open ($IN, "t/init_test.txt");
my $q = CGI->new($IN);
is($_, 'abcdefghijklmnopq', 'make sure not to clobber $_ on init');