DEBSOURCES
Skip Quicknav
sources / libmethod-signatures-perl / 20170211-3 / t / one_line.t
123456789101112
#!/usr/bin/perl -w use Test::More tests => 1; { package Thing; use Method::Signatures; method foo {"wibble"} ::is( Thing->foo, "wibble" ); }