File: 10_construct.t

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

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

BEGIN {
    use lib 't/lib';
    use_ok( 'Net::CLI::Interact');
}

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

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

done_testing;