The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use Test::More 0.88;

use lib 't/lib';
use Test::Metabase::Util;
my $TEST = Test::Metabase::Util->new;

my $gateway = $TEST->test_gateway;

isa_ok( $gateway, 'Test::Metabase::Gateway' );

isa_ok($gateway->_cache, 'CHI::Driver', "internal cache");

# XXX really should test the API -- dagolden, 2010-03-03

done_testing;