#!/usr/bin/perl
BEGIN {
use File::Basename;
use Cwd qw(abs_path);
my $scriptDir = dirname(abs_path($0));
my $rvframeworkpath = dirname(abs_path($scriptDir . '/../'));
my @INC_PLUS = (
$scriptDir,
$rvframeworkpath,
$rvframeworkpath . '/lib',
$rvframeworkpath . '/lib/perl5',
$rvframeworkpath . '/tests/xunit');
push(@INC, @INC_PLUS);
}
use LikeXUnit;
use RVL;
use RVL::ParamHandler;
sub set_up {
}
sub tear_down {
}
testcase ('Case RVL::File::mime_type()', sub {
my $scriptDir = dirname(abs_path($0));
my ($ph) = RVL::ParamHandler::singleton($scriptDir . '/ParamHandler/ParamHandler.yaml');
ok(1, '$res have value one');
$ph->read();
});
done_testing( $number_of_tests_run );
1;
Copyright 2K16 - 2K18 Indonesian Hacker Rulez