The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
# -*-mode:cperl-*-

# Name:   20_test2a.t
# Author: wd (Wolfgang.Dobler@kis.uni-freiburg.de)
# Date:   06-Feb-2005
# Description:
#   Part of test suite for Namelist module

use strict;
use Test::More tests => 6;
use Fortran::F90Namelist;

# 1. Object creation
my $nl = Fortran::F90Namelist->new();
isa_ok($nl, 'Fortran::F90Namelist');

## Read reference file
my $hash;
{ local $/;
  open(HASH,"< t/files/test2a.hash")
    or die "Couldn't open reference file t/files/test2a.hash";
  $hash = <HASH>;
  close(HASH);
}
my ($name,$nslots,$hashref);
eval("$hash");
die "$@\n" if ($@);
#
my $parseresp = $nl->parse(file => "t/files/test2a.nml");
# 2.+3. Result from parsing
is( defined($parseresp), 1,        'parsing');
is( $parseresp,          $name,    'parse() return value');
# 4.-6. Compare with reference values
is(       $nl->name,     $name,    'name');
is(       $nl->nslots,   $nslots,  'nslots');
is_deeply($nl->hash,     $hashref, 'data');

# End of file 20_test2a.t