Prevent the accidental creation of new tests with empty names by
printing usage information for new-test when the test name would be
empty.
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(
my $testname = join(' ', @ARGV);
$testname =~ s/ /-/g;
+unless (length $testname) {
+ say $usage;
+ exit(0);
+}
+
my $header = <<'EOF';
#!perl
# vim:ts=4:sw=4:expandtab