#!/usr/bin/env perl use strict qw(vars refs subs); use Meta::Utils::System qw(); use Meta::Utils::Opts::Opts qw(); use Meta::Baseline::Test qw(); use Meta::Info::Enum qw(); use Meta::Utils::Output qw(); use Data::Dumper qw(); my($opts)=Meta::Utils::Opts::Opts->new(); $opts->set_standard(); $opts->set_free_allo(0); $opts->analyze(\@ARGV); Meta::Baseline::Test::redirect_on(); my($enum)=Meta::Info::Enum->new(); $enum->insert("red","the color red"); $enum->insert("blue","the color blue"); $enum->insert("green","the color green"); $enum->set_default("red"); Meta::Utils::Output::print(Data::Dumper::Dumper($enum)); Meta::Baseline::Test::redirect_off(); Meta::Utils::System::exit_ok(); __END__ =head1 NAME enum.pl - testing program for the Meta::Info::Enum.pm module. =head1 COPYRIGHT Copyright (C) 2001, 2002 Mark Veltzer; All rights reserved. =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. =head1 DETAILS MANIFEST: enum.pl PROJECT: meta VERSION: 0.25 =head1 SYNOPSIS enum.pl =head1 DESCRIPTION This will test the Meta::Info::Enum.pm module. Currently it creates an object and queries about values. =head1 OPTIONS =over 4 =item B (type: bool, default: 0) display help message =item B (type: bool, default: 0) display pod options snipplet =item B (type: bool, default: 0) display manual page =item B (type: bool, default: 0) quit without doing anything =item B (type: bool, default: 0) run a gtk ui to get the parameters =item B (type: bool, default: 0) show license and exit =item B (type: bool, default: 0) show copyright and exit =item B (type: bool, default: 0) show description and exit =item B (type: bool, default: 0) show history and exit =back no free arguments are allowed =head1 BUGS None. =head1 AUTHOR Name: Mark Veltzer Email: mailto:veltzer@cpan.org WWW: http://www.veltzer.org CPAN id: VELTZER =head1 HISTORY 0.00 MV put ALL tests back and light the tree 0.01 MV silense all tests 0.02 MV more perl code quality 0.03 MV perl code quality 0.04 MV more perl quality 0.05 MV more perl quality 0.06 MV get basic Simul up and running 0.07 MV revision change 0.08 MV languages.pl test online 0.09 MV Pdmt stuff 0.10 MV perl packaging 0.11 MV license issues 0.12 MV md5 project 0.13 MV database 0.14 MV perl module versions in files 0.15 MV thumbnail user interface 0.16 MV more thumbnail issues 0.17 MV website construction 0.18 MV improve the movie db xml 0.19 MV web site automation 0.20 MV SEE ALSO section fix 0.21 MV move tests to modules 0.22 MV bring movie data 0.23 MV finish papers 0.24 MV teachers project 0.25 MV md5 issues =head1 SEE ALSO Data::Dumper(3), Meta::Baseline::Test(3), Meta::Info::Enum(3), Meta::Utils::Opts::Opts(3), Meta::Utils::Output(3), Meta::Utils::System(3), strict(3) =head1 TODO Nothing.