#!/usr/bin/env perl

my @args = @ARGV;

my @cmd = ('paws', $args[0], '--debug', '--caller', 'TestMakerCaller', @args[1..$#args]);

system @cmd;
