Skip to content

Commit

Permalink
Fix isa test
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Jul 22, 2023
1 parent a0724c7 commit badb430
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions t/0-useme.t
@@ -1,7 +1,7 @@
use strict;
use Test::More tests => 2;
use Test::More;

use_ok('Unicode::Unihan');
is(ref(Unicode::Unihan->new) => 'Unicode::Unihan', 'class');
my $class = 'Unicode::Unihan';
use_ok( $class );
isa_ok( $class->new, $class );

__END__
done_testing();

0 comments on commit badb430

Please sign in to comment.