The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!./perl

# These tests are not complete. Patches welcome.

use Test::More tests => 3;

BEGIN {use_ok( 'Tie::Hash' )};

# these are "abstract virtual" parent methods
for my $method (qw( TIEHASH EXISTS )) {
	eval { Tie::Hash->$method() };
	like( $@, qr/doesn't define an? $method/, "croaks on inherited $method()" );
}