###################################################################### # Acme::Prereq::B -- 2005, Mike Schilli ###################################################################### ########################################### package Acme::Prereq::B; ########################################### use strict; use warnings; use Acme::Prereq::A; our $VERSION = "0.01"; 1; __END__ =head1 NAME Acme::Prereq::B - Module for testing prerequisites =head1 SYNOPSIS use Acme::Prereq::B; =head1 DESCRIPTION Acme::Prereq::B does nothing, however, it requires Acme::Prereq::A to be installed. It can be used for testing (circular) dependencies among CPAN modules. =head1 LEGALESE Copyright 2005 by Mike Schilli, all rights reserved. This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR 2005, Mike Schilli