File: 10_construct.t

package info (click to toggle)
libnet-cli-interact-perl 2.400002-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 576 kB
  • sloc: perl: 2,075; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl

use strict; use warnings FATAL => 'all';
use Test::More 0.88;

BEGIN {
    use_ok( 'Net::CLI::Interact');
}

new_ok('Net::CLI::Interact' => [
    transport => 'Loopback'
]);

new_ok('Net::CLI::Interact' => [{
    transport => 'Loopback'
}]);

done_testing;