Initial commit
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Generator / File.pm
... / ...
CommitLineData
1package Gruntmaster::Daemon::Generator::File;
2
3use 5.014000;
4use strict;
5use warnings;
6
7use File::Copy qw/cp/;
8use Log::Log4perl qw/get_logger/;
9
10our $VERSION = '0.001';
11
12##################################################
13
14sub generate{
15 my ($test, $meta) = @_;
16 get_logger->trace("Generating test $test ...");
17 cp "$test.in", 'input' or die "Cannot copy input for test $test: $!";
18}
19
201
This page took 0.008283 seconds and 4 git commands to generate.