#!/usr/bin/env perl # # Copyright 2008-2010 Tim Rayner # # This file is part of Bio::MAGETAB. # # Bio::MAGETAB is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # Bio::MAGETAB is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Bio::MAGETAB. If not, see . # # $Id: 002_node.t 333 2010-06-02 16:41:31Z tfrayner $ use strict; use warnings; use Test::More qw(no_plan); use Test::Exception; BEGIN { use_ok( 'Bio::MAGETAB::Node' ); } INIT { use lib 't/testlib'; use CommonTests qw(test_methods); } dies_ok( sub { Bio::MAGETAB::Node->new() }, 'abstract class cannot be instantiated' ); # Very basic tests that methods exist. Anything more would require # instantiation. my @expected = qw( get_inputEdges get_outputEdges get_comments get_sdrfRows set_inputEdges set_outputEdges set_comments set_sdrfRows has_inputEdges has_outputEdges has_comments has_sdrfRows clear_inputEdges clear_outputEdges clear_comments clear_sdrfRows ); test_methods( 'Bio::MAGETAB::Node', \@expected );