File: 01_base.t

package info (click to toggle)
libhttp-tiny-multipart-perl 0.08-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: perl: 268; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

use HTTP::Tiny;

use_ok 'HTTP::Tiny::Multipart';

my $http = HTTP::Tiny->new;
isa_ok $http, 'HTTP::Tiny';
can_ok $http, 'post_multipart';

done_testing();