App-Smbxfer

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    module_name         => 'App::Smbxfer',
    license             => 'perl',
    dist_author         => 'Karl Erisman <karl.erisman@gmail.com>',
    dist_version_from   => 'lib/App/Smbxfer.pm',
    requires => {
        'Exporter' => 0,
        'Getopt::Long' => 0,
        'IO::Prompt' => 0,
        'Filesys::SmbClient' => 0,
        'Test::More' => 0,
        'Test::Differences' => 0,
        'File::Find' => 0,
        'File::Temp' => 0,
    },
    add_to_cleanup      => [ 'App-Smbxfer-*' ],
);

$builder->create_build_script();

META.yml  view on Meta::CPAN

version:      0.01
version_from: lib/App/Smbxfer.pm
installdirs:  site
requires:
    Exporter:                      0
    File::Find:                    0
    File::Temp:                    0
    Filesys::SmbClient:            0
    Getopt::Long:                  0
    IO::Prompt:                    0
    Test::Differences:             0
    Test::More:                    0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30_01

Makefile.PL  view on Meta::CPAN

    VERSION_FROM        => 'lib/App/Smbxfer.pm',
    ABSTRACT_FROM       => 'lib/App/Smbxfer.pm',
    EXE_FILES           => [ qw( bin/smbxfer ) ],
    PL_FILES            => {},
    PREREQ_PM => {
        'Exporter' => 0,
        'Getopt::Long' => 0,
        'IO::Prompt' => 0,
        'Filesys::SmbClient' => 0,
        'Test::More' => 0,
        'Test::Differences' => 0,
        'File::Find' => 0,
        'File::Temp' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'App-Smbxfer-*' },
);

README  view on Meta::CPAN

    ./Build install


DEPENDENCIES

Exporter
Getopt::Long
IO::Prompt
Filesys::SmbClient
Test::More
Test::Differences
File::Find
File::Temp

COPYRIGHT AND LICENCE

Copyright (C) 2007, Karl Erisman

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

t/xfer_essentials.t  view on Meta::CPAN

#
# Careful tests of the essentials, namely upload/download...
#
use strict;

use Test::More tests => 9;
use Test::Differences qw( eq_or_diff );

use Filesys::SmbClient;

use IO::Prompt;
use File::Find;
use File::Temp qw( tempdir );

BEGIN { use_ok( 'App::Smbxfer', qw( smb_element_type parse_smb_spec do_smb_transfer ) ) }

#~~~~ ((( begin test initialization ))) ~~~~



( run in 1.420 second using v1.01-cache-2.11-cpan-6aa56a78535 )