1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#! /bin/sh
#BEGIN DEPEND------------------------------------------------------------------
INPUT_MODULES='src/lib/perl5/COD/CIF/Data/CODFlags.pm'
#END DEPEND--------------------------------------------------------------------
perl <<'END_SCRIPT'
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2019-12-17 11:46:57 +0200 (Tue, 17 Dec 2019) $
#$Revision: 7614 $
#$URL: svn+ssh://www.crystallography.net/home/coder/svn-repositories/cod-tools/tags/v3.7.0/tests/shtests/has_errors_002.sh $
#------------------------------------------------------------------------------
#*
#* Unit test for the COD::CIF::Data::CODFlags::has_errors subroutine.
#* Tests the way the subroutine behaves when the input data block contains
#* the '_cod_error_flag' data item with the 'errors' flag value.
#**
use strict;
use warnings;
use COD::CIF::Data::CODFlags qw( has_errors );
my $data_block =
{
'name' => 'cod_errors_error_flag',
'tags' => [ '_cod_error_flag' ],
'loops' => [],
'inloop' => {},
'values' => { '_cod_error_flag' => [ 'errors' ] },
'precisions' => {},
'types' => { '_cod_error_flag' => [ 'UQSTRING' ] },
};
if (has_errors($data_block)) {
print 'Data block \'' . $data_block->{'name'} . '\' contains errors.' . "\n";
} else {
print 'Data block \'' . $data_block->{'name'} . '\' does not contain errors.' . "\n";
}
END_SCRIPT
|