Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

test::dir(3pm) [debian man page]

Test::Dir(3pm)						User Contributed Perl Documentation					    Test::Dir(3pm)

NAME
Test::Dir - test directory attributes SYNOPSIS
use Test::More ...; use Test::Dir; DESCRIPTION
This modules provides a collection of test utilities for directory attributes. Use it in combination with Test::More in your test programs. FUNCTIONS
dir_exists_ok(DIRNAME [, TESTNAME] ) Ok if the directory exists, and not ok otherwise. dir_not_exists_ok(DIRNAME [, TESTNAME] ) Ok if the directory does not exist, and not ok otherwise. dir_empty_ok(DIRNAME [, TESTNAME] ) Ok if the directory is empty (contains no files or subdirectories), and not ok otherwise. dir_not_empty_ok(DIRNAME [, TESTNAME] ) Ok if the directory is not empty, and not ok otherwise. dir_readable_ok(DIRNAME [, TESTNAME] ) Ok if the directory is readable, and not ok otherwise. dir_not_readable_ok(DIRNAME [, TESTNAME] ) Ok if the directory is not readable, and not ok otherwise. dir_writable_ok(DIRNAME [, TESTNAME] ) Ok if the directory is writable, and not ok otherwise. dir_not_writable_ok(DIRNAME [, TESTNAME] ) Ok if the directory is not writable, and not ok otherwise. dir_executable_ok(DIRNAME [, TESTNAME] ) Ok if the directory is executable, and not ok otherwise. dir_not_executable_ok(DIRNAME [, TESTNAME] ) Ok if the directory is not executable, and not ok otherwise. TO DO
I know there are a lot more directory attributes that can be tested. If you need them, please ask (or better yet, contribute code!). AUTHOR
Martin 'Kingpin' Thurn, "mthurn at cpan.org", <http://tinyurl.com/nn67z>. BUGS
Please report any bugs or feature requests to "bug-test-dir at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Dir>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Test::Dir You can also look for information at: o RT: CPAN's request tracker <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Dir> o AnnoCPAN: Annotated CPAN documentation <http://annocpan.org/dist/Test-Dir> o CPAN Ratings <http://cpanratings.perl.org/d/Test-Dir> o Search CPAN <http://search.cpan.org/dist/Test-Dir> ACKNOWLEDGEMENTS
COPYRIGHT &; LICENSE Copyright (C) 2007-2008 Martin 'Kingpin' Thurn This program 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::Dir(3pm)

Check Out this Related Man Page

Test::Aggregate::Nested(3pm)				User Contributed Perl Documentation			      Test::Aggregate::Nested(3pm)

NAME
Test::Aggregate::Nested - Aggregate "*.t" tests to make them run faster. VERSION
Version 0.364 SYNOPSIS
use Test::Aggregate::Nested; my $tests = Test::Aggregate::Nested->new( { dirs => $aggregate_test_dir, verbose => 1, } ); $tests->run; DESCRIPTION
ALPHA WARNING: this is alpha code. Conceptually it is superior to "Test::Aggregate", but in reality, it might not be. We'll see. This module is almost identical to "Test::Aggregate" and will in the future be the preferred way of aggregating tests (until someone comes up with something better :) "Test::Aggregate::Nested" requires a 0.8901 or better of "Test::More". This is because we use its "subtest" function. Currently we "croak" if this function is not available. Because the TAP output is nested, you'll find it much easier to see which tests result in which output. For example, consider the following snippet of TAP. 1..2 1..5 ok 1 - aggtests/check_plan.t ***** 1 ok 2 - aggtests/check_plan.t ***** 2 ok 3 # skip checking plan (aggtests/check_plan.t ***** 3) ok 4 - env variables should not hang around ok 5 - aggtests/check_plan.t ***** 4 ok 1 - Tests for aggtests/check_plan.t 1..1 ok 1 - subs work! ok 2 - Tests for aggtests/subs.t At the end of each nested test is a summary test line explaining which program we ran tests for. "Test::Aggregate::Nested" asserts a plan equal to the number of test files aggregated, something which "Test::Aggregate" could not do. Because of this, we no longer export "Test::More" functions. If you need additional tests before or after aggregation, you'll need to run the aggregated tests in a subtest: use Test::More tests => 2; use Test::Aggregate::Nested; subtest 'Nested tests' => sub { Test::Aggregate::Nested->new({ dirs => 'aggtests/' })->run; }; ok $some_other_test; CAVEATS
"Test::Aggregate::Nested" is much cleaner than "Test::Aggregate", so I don't support the "dump" argument. If this is needed, let me know and I'll see about fixing this. The "variable will not stay shared" warnings from "Test::Aggregate" (see its CAVEATS section) are no longer applicable. AUTHOR
Curtis Poe, "<ovid at cpan.org>" BUGS
Please report any bugs or feature requests to "bug-test-aggregate at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Aggregate <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Aggregate>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Test::Aggregate You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Test-Aggregate <http://annocpan.org/dist/Test-Aggregate> o CPAN Ratings http://cpanratings.perl.org/d/Test-Aggregate <http://cpanratings.perl.org/d/Test-Aggregate> o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Aggregate <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Aggregate> o Search CPAN http://search.cpan.org/dist/Test-Aggregate <http://search.cpan.org/dist/Test-Aggregate> ACKNOWLEDGEMENTS
Many thanks to mauzo (<http://use.perl.org/~mauzo/> for helping me find the 'skip_all' bug. Thanks to Johan LindstrA~Xm for pointing me to Apache::Registry. COPYRIGHT &; LICENSE Copyright 2007 Curtis "Ovid" Poe, 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.12.4 2011-08-27 Test::Aggregate::Nested(3pm)
Man Page