Mercurial > pub > Impl
comparison _test/config.t @ 422:b0481c071bea ref20150831
IMPL::Config::Container tests, YAMLConfiguration now works and tested
author | cin |
---|---|
date | Sun, 20 Aug 2017 00:20:41 +0300 |
parents | 3ed0c58e9da3 |
children |
comparison
equal
deleted
inserted
replaced
421:7798345304bc | 422:b0481c071bea |
---|---|
1 #!/usr/bin/perl -w | 1 #!/usr/bin/perl -w |
2 use strict; | 2 use strict; |
3 use lib '../Lib'; | 3 use lib '../Lib'; |
4 use lib '.'; | 4 use lib '.'; |
5 | 5 |
6 use IMPL::Debug(); | |
6 use IMPL::Test qw(run_plan); | 7 use IMPL::Test qw(run_plan); |
8 | |
9 $IMPL::Debug::ENABLE{'IMPL::Config::YAMLConfig'} = 1; | |
10 | |
11 IMPL::Debug->subscribe(sub { | |
12 my $text = join('', @_); | |
13 | |
14 $text =~ s/^/# /gm; | |
15 print "$text\n"; | |
16 }); | |
7 | 17 |
8 run_plan( qw( | 18 run_plan( qw( |
9 Test::Config::Container | 19 Test::Config::Container |
10 ) ); | 20 ) ); |
11 | 21 |