summaryrefslogtreecommitdiffstats
path: root/t/001-basic.t
blob: e939d77f973f9ac3122181ab0af17cfc6c935174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 2;
use Test::Exception;
use Games::Word::Wordlist;

my $wl;
lives_ok { $wl = Games::Word::Wordlist->new([]) }
         "creating a wordlist succeeds";
isa_ok $wl, "Games::Word::Wordlist";