source: trunk/LATMOS-Accounts/lib/LATMOS/Accounts/Bases/Dummy.pm @ 2136

Last change on this file since 2136 was 1071, checked in by nanardon, 12 years ago
  • rename options() to config() to clarify its role
  • Property svn:keywords set to Id Rev
File size: 817 bytes
Line 
1package LATMOS::Accounts::Bases::Dummy;
2
3use strict;
4use warnings;
5use base qw(LATMOS::Accounts::Bases);
6
7=head1 NAME
8
9LATMOS::Accounts::Bases::Dummy - Dummy base for testing purpose
10
11=head1 DESCRIPTION
12
13This base does nothing except returning true, it can be used to test process
14
15=cut
16
17our $VERSION = (q$Rev$ =~ /^Rev: (\d+) /)[0];
18
19sub new {
20    my ($class, %config) = @_;
21    bless {}, $class;
22}
23
241;
25
26__END__
27
28=head1 SEE ALSO
29
30L<LATMOS::Accounts::Bases>
31
32=head1 AUTHOR
33
34Olivier Thauvin, E<lt>olivier.thauvin@latmos.ipsl.frE<gt>
35
36=head1 COPYRIGHT AND LICENSE
37
38Copyright (C) 2012 CNRS SA/CETP/LATMOS
39
40This library is free software; you can redistribute it and/or modify
41it under the same terms as Perl itself, either Perl version 5.10.0 or,
42at your option, any later version of Perl 5 you may have available.
43
44=cut
Note: See TracBrowser for help on using the repository browser.