#!/usr/bin/perl -w use strict; use Test::More tests => 3; BEGIN { use_ok 'App::Info' or die; } eval { App::Info->key_name }; ok my $err = $@, "Yes! Caught exception"; like $err, qr'App::Info is an abstract base class. Attempt to call non-existent method App::Info::key_name', "and it's the right exception";