File: rt15870.t

package info (click to toggle)
libtest-class-perl 0.52-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 540 kB
  • sloc: perl: 1,706; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 355 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;
use Test::Exception tests => 1;

{   package SomeClassThatDefinesNew;
    sub new { return bless {}, shift }
}

{   package TestClassWithBrokenMI;
    use base qw( SomeClassThatDefinesNew Test::Class ); 
}

throws_ok { Test::Class->runtests } qr/Test::Class internals seem confused/,
    'sensible error if new() is overridden';