File: 01_new.t

package info (click to toggle)
libnet-ssl-expiredate-perl 1.25-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: perl: 547; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use Test::More;

use FindBin;
use lib "$FindBin::Bin/..";

use t::Util;

require Net::SSL::ExpireDate;
Net::SSL::ExpireDate->import;
note("new");
my $obj = new_ok("Net::SSL::ExpireDate" => [ https => 'badssl.com' ]);

# diag explain $obj

done_testing;