App-Environ

 view release on metacpan or  search on metacpan

t/01-event-processing.t  view on Meta::CPAN

use 5.008000;
use strict;
use warnings;

use lib 't/lib';

use Test::More tests => 10;
use Test::Fatal qw( lives_ok exception );
use App::Environ;

BEGIN {
  $ENV{APPCONF_DIRS} = 't/etc';
}

use Foo;
use Bar;

t_initialize();

t/02-exceptions.t  view on Meta::CPAN

use 5.008000;
use strict;
use warnings;

use lib 't/lib';

use Test::More tests => 3;
use Test::Fatal;
use App::Environ;
use App::Environ::Config;

t_module_class_not_specified();
t_event_name_not_specified();
t_config_not_initialized();


sub t_module_class_not_specified {
  like(



( run in 1.950 second using v1.01-cache-2.11-cpan-54e63673c56 )