File: 10_construct.t

package info (click to toggle)
libnet-cli-interact-perl 2.200006-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 444 kB
  • ctags: 147
  • sloc: perl: 1,966; makefile: 2
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;