Merge branch 'master' of mjesec.ffzg.hr:/git/Biblio-RFID
[Biblio-RFID.git] / t / 50-Readers.t
index d632110..469af16 100755 (executable)
@@ -6,13 +6,13 @@ use Data::Dump qw(dump);
 use lib 'lib';
 
 BEGIN {
-       use_ok( 'RFID::Biblio::Reader' );
+       use_ok( 'Biblio::RFID::Reader' );
 }
 
-ok( my $o = RFID::Biblio::Reader->new( shift @ARGV ), 'new' );
+ok( my $o = Biblio::RFID::Reader->new( shift @ARGV ), 'new' );
 
-ok( my $tags = $o->tags, 'tags' );
-diag dump( $tags );
+ok( my $tags = [ $o->tags ], 'tags' );
+diag 'tags: ', dump( $tags );
 
 done_testing();