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

use strict;
use warnings;
use lib 't/lib';
use Test::More tests => 1;
use WWW::Dict;

my $dict = WWW::Dict->new('Fake');

is ( ref($dict), 'WWW::Dict::Fake' );