Add javascript
[gruntmaster-daemon.git] / lib / Gruntmaster / Daemon / Generator / Undef.pm
CommitLineData
5c5cd38a
MG
1package Gruntmaster::Daemon::Generator::Undef;
2
3use 5.014000;
4use strict;
5use warnings;
6
7use Log::Log4perl qw/get_logger/;
b59254d7 8use File::Slurp qw/write_file/;
5c5cd38a 9
3fa65372 10our $VERSION = '5999.000_005';
5c5cd38a
MG
11
12##################################################
13
14sub generate{
b59254d7
MG
15 get_logger->trace("Generating empty test $_[0]...");
16 write_file 'input', '';
5c5cd38a
MG
17}
18
bc372959
MG
191;
20__END__
21
22=encoding utf-8
23
24=head1 NAME
25
26Gruntmaster::Daemon::Generator::Undef - Pretend to generate tests
27
28=head1 SYNOPSIS
29
30 use Gruntmaster::Daemon::Generator::Undef;
31 Gruntmaster::Daemon::Generator::Undef->generate(5, $meta);
32
33=head1 DESCRIPTION
34
35Gruntmaster::Daemon::Generator::Undef is a noop test generator. It is useful for L<interactive|Gruntmaster::Daemon::Runner::Interactive> problems, where there is no input.
36
37=head1 AUTHOR
38
39Marius Gavrilescu E<lt>marius@ieval.roE<gt>
40
41=head1 COPYRIGHT AND LICENSE
42
43Copyright (C) 2014 by Marius Gavrilescu
44
45This library is free software: you can redistribute it and/or modify
46it under the terms of the GNU Affero General Public License as published by
47the Free Software Foundation, either version 3 of the License, or
48(at your option) any later version.
49
50
51=cut
This page took 0.020559 seconds and 5 git commands to generate.