File: 50croak-method.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 (31 lines) | stat: -rw-r--r-- 562 bytes parent folder | download
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
27
28
29
30
31
#!/usr/bin/perl

use v5.14;
use warnings;

use Test::More;

use Feature::Compat::Class;

# This test checks that various error conditions result in exceptions being
# thrown. While the core implementation is still being developed we won't
# assert on the exact message text.

class Test1 {
   field $x;
   method clear { $x = 0 }
}

{
   ok( !defined eval { Test1->clear },
      'method on non-instance fails' );
}

{
   my $obj = bless [], "DifferentClass";

   ok( !defined eval { $obj->Test1::clear },
      'method on wrong class fails' );
}

done_testing;