Testcases: new-test prints usage without input

Prevent the accidental creation of new tests with empty names by
printing usage information for new-test when the test name would be
empty.
next
Tony Crisci 2013-10-17 07:20:35 -04:00 committed by Michael Stapelberg
parent cf3da1c433
commit 9adff26dcf
1 changed files with 15 additions and 0 deletions

View File

@ -15,6 +15,16 @@ use File::Basename qw(basename);
use Getopt::Long;
use v5.10;
my $usage = <<'EOF';
Script to create a new testcase from a template.
# Create (and edit) a new test for moving floating windows
./new-test floating move
# Create (and edit) a multi-monitor test for moving workspaces
./new-test -m move workspaces
EOF
my $multi_monitor;
my $result = GetOptions(
@ -24,6 +34,11 @@ my $result = GetOptions(
my $testname = join(' ', @ARGV);
$testname =~ s/ /-/g;
unless (length $testname) {
say $usage;
exit(0);
}
my $header = <<'EOF';
#!perl
# vim:ts=4:sw=4:expandtab