The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#-*-Perl-*-

use strict;
use warnings;
use Path::Class;
use File::Share ':all';
use Data::Dumper;
use FindBin qw($Bin);
use constant TEST_COUNT => 2;

use lib "$Bin/../lib", "$Bin/../blib/lib", "$Bin/../blib/arch";

BEGIN {
    # include Test.pm from 't' dir in case itis not installed
    eval { require Test::More; };
    if ($@) {
      use lib 't';
    }
    use Test::More tests => TEST_COUNT;
}

use Bio::ViennaNGS::MinimalFeature;

{
  my $chr = "chrX";
  my $start = 99999;
  my $end = 123456;
  my $strand = "+";
  my @arg = (chromosome => $chr, start => $start, end => $end, strand => $strand);
  my $MF = new_ok('Bio::ViennaNGS::MinimalFeature'=> \@arg);
  ok($MF->_length == 23457, 'length of Featureinterval');
}