Initial commit
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Generator / File.pm
1 package Gruntmaster::Daemon::Generator::File;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6
7 use File::Copy qw/cp/;
8 use Log::Log4perl qw/get_logger/;
9
10 our $VERSION = '0.001';
11
12 ##################################################
13
14 sub 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
20 1
This page took 0.023811 seconds and 5 git commands to generate.