Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bundle::object::insideout(3pm) [debian man page]

Bundle::Object::InsideOut(3pm)				User Contributed Perl Documentation			    Bundle::Object::InsideOut(3pm)

NAME
Bundle::Object::InsideOut - A bundle of modules for full Object::InsideOut support SYNOPSIS
perl -MCPAN -e "install Bundle::Object::InsideOut" CONTENTS
Test::Harness 3.23 - Used for module testing Test::Simple 0.98 - Used for module testing Scalar::Util 1.23 - Used by Object::InsideOut Pod::Escapes 1.04 - Used by Pod::Simple Pod::Simple 3.19 - Used by Test::Pod Test::Pod 1.45 - Checks POD syntax Devel::Symdump 2.08 - Used by Pod::Coverage File::Spec 3.33 - Used by Pod::Parser Pod::Parser 1.37 - Used by Pod::Coverage Pod::Coverage 0.21 - Used by Test::Pod::Coverage Test::Pod::Coverage 1.08 - Tests POD coverage threads 1.86 - Support for threads threads::shared 1.40 - Support for sharing objects between threads Want 0.18 - :lvalue accessor support Data::Dumper 2.131 - Object serialization support Storable 2.30 - Object serialization support Devel::StackTrace 1.27 - Used by Exception::Class Class::Data::Inheritable 0.08 - Used by Exception::Class Exception::Class 1.32 - Error handling Object::InsideOut 3.87 - Inside-out object support URI 1.59 - Used by LWP::UserAgent HTML::Tagset 3.20 - Used by LWP::UserAgent HTML::Parser 3.69 - Used by LWP::UserAgent LWP::UserAgent 6.03 - Used by Math::Random::MT::Auto Win32::API 0.64 - Used by Math::Random::MT::Auto (Win XP only) Math::Random::MT::Auto 6.17 - Support for :SECURE mode DESCRIPTION
This bundle includes all the modules used to test and support Object::InsideOut. CAVEATS
For ActivePerl on Win XP, if Win32::API doesn't install using CPAN, then try installing it using PPM: ppm install Win32-API Obviously, Win32::API will not install on all platforms - just Windows and Cygwin. AUTHOR
Jerry D. Hedden, <jdhedden AT cpan DOT org> COPYRIGHT AND LICENSE
Copyright 2006 - 2012 Jerry D. Hedden. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-19 Bundle::Object::InsideOut(3pm)

Check Out this Related Man Page

Test::Pod::No404s(3pm)					User Contributed Perl Documentation				    Test::Pod::No404s(3pm)

NAME
Test::Pod::No404s - Checks POD for http 404 links SYNOPSIS
#!/usr/bin/perl use strict; use warnings; use Test::More; eval "use Test::Pod::No404s"; if ( $@ ) { plan skip_all => 'Test::Pod::No404s required for testing POD'; } else { all_pod_files_ok(); } ABSTRACT
Using this test module will check your POD for any http 404 links. DESCRIPTION
This module looks for any http(s) links in your POD and verifies that they will not return a 404. It uses LWP::UserAgent for the heavy lifting, and simply lets you know if it failed to retrieve the document. More specifically, it uses $response->is_error as the "test." Normally, you wouldn't want this test to be run during end-user installation because they might have no internet! It is HIGHLY recommended that this be used only for module authors' RELEASE_TESTING phase. To do that, just modify the synopsis to add an env check :) Methods all_pod_files_ok( [ @files ] ) This function is what you will usually run. It automatically finds any POD in your distribution and runs checks on them. Accepts an optional argument: an array of files to check. By default it checks all POD files it can find in the distribution. Every file it finds is passed to the "pod_file_ok" function. pod_file_ok( FILENAME, [ TESTNAME ] ) "pod_file_ok()" will okay the test if there is no http(s) links present in the POD or if all links are not an error. Furthermore, if the POD was malformed as reported by Pod::Simple, the test will fail and not attempt to check the links. When it fails, "pod_file_ok()" will show any failing links as diagnostics. The optional second argument TESTNAME is the name of the test. If it is omitted, "pod_file_ok()" chooses a default test name "404 test for FILENAME". EXPORT
Automatically exports the two subs. SEE ALSO
LWP::UserAgent Pod::Simple Test::Pod SUPPORT
You can find documentation for this module with the perldoc command. perldoc Test::Pod::No404s Websites o Search CPAN <http://search.cpan.org/dist/Test-Pod-No404s> o AnnoCPAN: Annotated CPAN documentation <http://annocpan.org/dist/Test-Pod-No404s> o CPAN Ratings <http://cpanratings.perl.org/d/Test-Pod-No404s> o CPAN Forum <http://cpanforum.com/dist/Test-Pod-No404s> o RT: CPAN's Request Tracker <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Pod-No404s> o CPANTS Kwalitee <http://cpants.perl.org/dist/overview/Test-Pod-No404s> o CPAN Testers Results <http://cpantesters.org/distro/T/Test-Pod-No404s.html> o CPAN Testers Matrix <http://matrix.cpantesters.org/?dist=Test-Pod-No404s> o Git Source Code Repository <http://github.com/apocalypse/perl-test-pod-no404s> Bugs Please report any bugs or feature requests to "bug-test-pod-no404s at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Pod-No404s>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. AUTHOR
Apocalypse <apocal@cpan.org> Thanks to the author of Test::Pod for the basic framework of this module! Thanks to the POE guys for finding 404 links in their POD, and was the inspiration for this module. COPYRIGHT AND LICENSE
Copyright 2010 by Apocalypse This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2011-03-05 Test::Pod::No404s(3pm)
Man Page