/trunk/Examples/test-suite/perl5/using2_runme.pl
Perl | 10 lines | 6 code | 2 blank | 2 comment | 0 complexity | 5f557fbb05a4c44b65d1be06f03f329d MD5 | raw file
1#!/usr/bin/perl 2use strict; 3use warnings; 4use Test::More tests => 3; 5BEGIN { use_ok('using2') } 6require_ok('using2'); 7 8# adapted from ../python/using2_runme.py 9 10is(using2::spam(37), 37);