summaryrefslogtreecommitdiff
path: root/Examples/test-suite/perl5/using2_runme.pl
blob: 3a31bb364c211bb40ac0c421c2f74e119d06476c (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 3;
BEGIN { use_ok('using2') }
require_ok('using2');

# adapted from ../python/using2_runme.py

is(using2::spam(37), 37);