File: subclass_late.t

package info (click to toggle)
libtest-base-perl 0.59-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 656 kB
  • ctags: 203
  • sloc: perl: 2,014; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
use lib 't';
use Test::Base tests => 1;

# I can't remember why I added this but it was preventing multiple
# levels of inheritance which I needed for the YAML and YAML-Syck
# projects. And is also just damn useful in general.

SKIP: {
    skip("yagni For now...", 1);
    eval "use TestBass";

    like "$@", qr{Can't use TestBass after using Test::Base};
}