The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

# COPYRIGHT AND LICENCE
#
# Copyright (C) 2007,2008 WhitePages.com, Inc. with primary
# development by Joshua ben Jore.
#
# This program is distributed WITHOUT ANY WARRANTY, including but not
# limited to the implied warranties of merchantability or fitness for
# a particular purpose.
#
# The program is free software.  You may distribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation (either version 2 or any later version)
# and the Perl Artistic License as published by O’Reilly Media, Inc.
# Please open the files named gpl-2.0.txt and Artistic for a copy of
# these licenses.


use strict;
use warnings;
use Test::More tests => 12;
use lib 't';
use Test::Enbugger 'run_with_tmp';

=head1 NAME

11load.t - Tests that the module can be loaded and breakpoints
triggered

=over

=cut


my @options = (
    [ $^X, '-Mblib',       't/11load.pl',                                                       ],
    [ $^X, '-Mblib',       't/11load.pl',                                          '--noimport' ],
    [ $^X, '-Mblib',       't/11load.pl',                        '--load_perl5db',              ],
    [ $^X, '-Mblib',       't/11load.pl',                        '--load_perl5db', '--noimport' ],
    [ $^X, '-Mblib',       't/11load.pl', '--import', 'perl5db',                                ],
    [ $^X, '-Mblib',       't/11load.pl', '--import', 'perl5db', '--load_perl5db',              ],
    [ $^X, '-Mblib', '-d', 't/11load.pl',                                                       ],
    [ $^X, '-Mblib', '-d', 't/11load.pl',                                          '--noimport' ],
    [ $^X, '-Mblib', '-d', 't/11load.pl',                        '--load_perl5db',              ],
    [ $^X, '-Mblib', '-d', 't/11load.pl',                        '--load_perl5db', '--noimport' ],
    [ $^X, '-Mblib', '-d', 't/11load.pl', '--import', 'perl5db',                                ],
    [ $^X, '-Mblib', '-d', 't/11load.pl', '--import', 'perl5db', '--load_perl5db',              ],
);


for my $args ( @options ) {
    my $test_output = run_with_tmp( @$args );
    like( $test_output, qr/^(?# )?\$ok = 1\. *$/m);
}

## Local Variables:
## mode: cperl
## mode: auto-fill
## cperl-indent-level: 4
## End: