import some (modified) MS tests
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / one_line.t
CommitLineData
633048d5 1#!perl
2use warnings FATAL => 'all';
3use strict;
4use Test::More tests => 1;
5
6{
7 package Thing;
8
9 use Function::Parameters qw(:strict);
10 method foo {"wibble"}
11
12 ::is( Thing->foo, "wibble" );
13}