The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'

#########################

# change 'tests => 1' to 'tests => last_test_to_print';
use strict;
use warnings;
use Test::More tests => 1;
use Config;

use_ok( "Sman::Config" );

__END__

# these are the old, real tests
BEGIN { plan tests => 2 };
my $perlpath = $Config::Config{perlpath}; 
my @lines;

eval { @lines = `$perlpath script/sman -h`; };
skip( 1, ($@) ? (0) : 1);   # skip this test

eval { @lines = `$perlpath script/sman-update -h`; };
skip( 1, ($@) ? (0) : 1);   # skip this test

#########################

# Insert your test code below, the Test module is use()ed here so read
# its man page ( perldoc Test ) for help writing this test script.