]>
Commit | Line | Data |
---|---|---|
0005d3ad MG |
1 | =encoding utf-8 |
2 | ||
3 | =head1 NAME | |
4 | ||
5 | Gruntmaster::Daemon::Generator - Modules for generating input files | |
6 | ||
7 | =head1 SYNOPSIS | |
8 | ||
9 | use Gruntmaster::Daemon::Generator::Foo; | |
10 | Gruntmaster::Daemon::Generator::Foo::generate(5, $meta); | |
11 | ||
12 | =head1 DESCRIPTION | |
13 | ||
14 | A generator is a module that creates input data. Each generator has a subroutine, B<generate>(I<$test>, I<$meta>), which generates the input data for the given test. | |
15 | ||
16 | There are three generators in this distribution: | |
17 | ||
18 | =over | |
19 | ||
20 | =item L<Gruntmaster::Daemon::Generator::File> - Generate tests from files | |
21 | ||
22 | =item L<Gruntmaster::Daemon::Generator::Run> - Generate tests from program output | |
23 | ||
24 | =item L<Gruntmaster::Daemon::Generator::Undef> - Pretend to generate tests | |
25 | ||
26 | =back | |
27 | ||
28 | =head1 AUTHOR | |
29 | ||
30 | Marius Gavrilescu E<lt>marius@ieval.roE<gt> | |
31 | ||
32 | =head1 COPYRIGHT AND LICENSE | |
33 | ||
34 | Copyright (C) 2014 by Marius Gavrilescu | |
35 | ||
36 | This library is free software: you can redistribute it and/or modify | |
37 | it under the terms of the GNU Affero General Public License as published by | |
38 | the Free Software Foundation, either version 3 of the License, or | |
39 | (at your option) any later version. | |
40 | ||
41 | ||
42 | =cut |