#!/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::Ds::Ohash qw(); use Meta::Ds::String qw(); use Meta::Utils::Output 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($hash)=Meta::Ds::Ohash->new(); my($string_mark)=Meta::Ds::String->new(); my($string_veltzer)=Meta::Ds::String->new(); my($string_doro)=Meta::Ds::String->new(); my($string_velt)=Meta::Ds::String->new(); $string_mark->set_text("mark"); $string_veltzer->set_text("veltzer"); $string_doro->set_text("doro"); $string_velt->set_text("velt"); $hash->insert($string_mark,$string_veltzer); $hash->insert($string_doro,$string_velt); $hash->print(Meta::Utils::Output::get_file()); Meta::Utils::Output::print("elem 0 is [".$hash->elem(0)->get_text()."]\n"); Meta::Utils::Output::print("elem 1 is [".$hash->elem(1)->get_text()."]\n"); Meta::Utils::Output::print("elem number is [".$hash->get_elem_number($string_mark)."]\n"); Meta::Baseline::Test::redirect_off(); Meta::Utils::System::exit_ok(); __END__ =head1 NAME ohash.pl - testing program for the Meta::Ds::Ohash.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: ohash.pl PROJECT: meta VERSION: 0.21 =head1 SYNOPSIS ohash.pl =head1 DESCRIPTION This will run a small test for the ohash module for you. =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 revision change 0.07 MV languages.pl test online 0.08 MV perl packaging 0.09 MV license issues 0.10 MV md5 project 0.11 MV database 0.12 MV perl module versions in files 0.13 MV graph visualization 0.14 MV thumbnail user interface 0.15 MV more thumbnail issues 0.16 MV website construction 0.17 MV improve the movie db xml 0.18 MV web site automation 0.19 MV SEE ALSO section fix 0.20 MV move tests to modules 0.21 MV md5 issues =head1 SEE ALSO Meta::Baseline::Test(3), Meta::Ds::Ohash(3), Meta::Ds::String(3), Meta::Utils::Opts::Opts(3), Meta::Utils::Output(3), Meta::Utils::System(3), strict(3) =head1 TODO Nothing.