#!perl ## Test the "new_version_tnm" action use 5.006; use strict; use warnings; use Data::Dumper; use Test::More; use lib 't','.'; use CP_Testing; use vars qw/$dbh $t/; if ($ENV{SKIP_NETWORK_TESTS}) { plan (skip_all => 'Skipped because environment variable SKIP_NETWORK_TESTS is set'); } else { plan tests => 1; } my $cp = CP_Testing->new( {default_action => 'new_version_tnm'} ); $dbh = $cp->test_database_handle(); my $S = q{Action 'new_version_tnm'}; my $label = 'POSTGRES_NEW_VERSION_TNM'; $t=qq{$S fails when called with an invalid option}; like ($cp->run('foobar=12'), qr{Usage:}, $t); ## No other tests for now exit;