File: 05subclass.t

package info (click to toggle)
libfeature-compat-class-perl 0.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 188 kB
  • sloc: perl: 434; makefile: 2; sh: 1
file content (26 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/perl

use v5.14;
use warnings;

use Test::More;

use Feature::Compat::Class;

{
   class Test1Base {
      method describe {
         "Value is " . $self->m;
      }
   }
   class Test1Derived :isa(Test1Base) {
      method m { 123 }
   }

   my $obj = Test1Derived->new;
   isa_ok( $obj, "Test1Derived", '$obj' );
   isa_ok( $obj, "Test1Base",    '$obj' );
   is( $obj->describe, "Value is 123", 'Object can invoke superclass methods' );
}

done_testing;