File: simple.t

package info (click to toggle)
libhttp-ghttp-perl 1.07-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 96 kB
  • ctags: 11
  • sloc: perl: 143; makefile: 56
file content (13 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
# $Id: simple.t,v 1.4 2001/01/18 17:43:10 matt Exp $

use Test;
use HTTP::GHTTP;
use strict;
BEGIN { plan tests => 3 }
ok(1);

{
  my $r = HTTP::GHTTP->new();
  ok($r);
  ok($r->set_uri("http://axkit.org/"));
}