1use lib 't'; 2use Test::Base tests => 1; 3 4# I can't remember why I added this but it was preventing multiple 5# levels of inheritance which I needed for the YAML and YAML-Syck 6# projects. And is also just damn useful in general. 7 8SKIP: { 9 skip("yagni For now...", 1); 10 eval "use TestBass"; 11 12 like "$@", qr{Can't use TestBass after using Test::Base}; 13} 14