File: 10_method.t

package info (click to toggle)
plsense 0.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,012 kB
  • sloc: perl: 9,767; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
use Test::More;
use PlSense::Symbol::Method;

my $mtd = PlSense::Symbol::Method->new({ name => "fuga", });
ok($mtd->isa("PlSense::Symbol::Method"), "new");
is($mtd->get_name, "fuga", "get name");


done_testing();