view Roary/t/Bio/Roary/CommandLine/ExtractProteomeFromGff.t @ 0:c47a5f61bc9f draft

Uploaded
author dereeper
date Fri, 14 May 2021 20:27:06 +0000
parents
children
line wrap: on
line source

#!/usr/bin/env perl
use Moose;
use Data::Dumper;
use Cwd;

BEGIN { unshift( @INC, './lib' ) }
BEGIN { unshift( @INC, './t/lib' ) }
with 'TestHelper';

BEGIN {
    use Test::Most;
    use_ok('Bio::Roary::CommandLine::ExtractProteomeFromGff');
}
my $script_name = 'Bio::Roary::CommandLine::ExtractProteomeFromGff';
my $cwd         = getcwd();
system('touch empty_file');
my %scripts_and_expected_files = (
    't/data/example_annotation.gff' =>
      ['example_annotation.gff.proteome.faa','t/data/example_annotation.gff.proteome.faa.expected' ],
      '-t 1 t/data/example_annotation.gff' =>
        ['example_annotation.gff.proteome.faa','t/data/example_annotation.gff.proteome.faa.expected' ],
      '-h' =>
        [ 'empty_file', 't/data/empty_file' ],
);

mock_execute_script_and_check_output( $script_name, \%scripts_and_expected_files );

done_testing();