Silence the warning "Can't locate auto/POSIX/autosplit.ix in @INC"
[p5sagit/p5-mst-13.2.git] / lib / CPANPLUS / t / 15_CPANPLUS-Shell.t
CommitLineData
494f1016 1### make sure we can find our conf.pl file
2BEGIN {
3 use FindBin;
4 require "$FindBin::Bin/inc/conf.pl";
5}
6
7use strict;
8use Test::More 'no_plan';
9
10use CPANPLUS::Internals::Constants;
11
12
13my $Class = 'CPANPLUS::Shell';
14my $Conf = gimme_conf();
15
16$Conf->set_conf( shell => SHELL_DEFAULT );
17
18### basic load tests
19use_ok( $Class );
20is( $Class->which, SHELL_DEFAULT,
21 "Default shell loaded" );
22