File: 00-use.t

package info (click to toggle)
libnet-sftp-sftpserver-perl 1.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 392 kB
  • ctags: 638
  • sloc: perl: 1,929; makefile: 11; sh: 2
file content (10 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
use Test::More tests => 2;

use Net::SFTP::SftpServer;

ok(1);

my $sftp = Net::SFTP::SftpServer->new(home => $ENV{HOME});

is( ref $sftp, 'Net::SFTP::SftpServer', 'Sftp class created: ' . ref $sftp);