program only tag requested on command-line
[Biblio-RFID.git] / t / 30-librfid.t
index 12e3e6a..c078400 100755 (executable)
@@ -1,20 +1,18 @@
 #!/usr/bin/perl
 
-use Test::More tests => 3;
+use Test::More;
 use Data::Dump qw(dump);
 
 use lib 'lib';
 
 BEGIN {
-       use_ok( 'RFID::Biblio::librfid' );
+       use_ok( 'Biblio::RFID::Reader::librfid' );
 }
 
-ok( my $o = RFID::Biblio::librfid->new( tool => '/rest/cvs/librfid/utils/librfid-tool' ), 'new' );
+ok( my $o = Biblio::RFID::Reader::librfid->new(), 'new' );
 
-ok( my @tags = $o->inventory, 'inventory' );
-diag dump @tags;
-
-__END__
+my @tags = $o->inventory;
+diag 'inventory = ', dump @tags;
 
 my $old_afi;
 
@@ -24,18 +22,8 @@ foreach my $tag ( @tags ) {
 
        ok( my $afi = $o->read_afi( $tag ), "read_afi $tag" );
 
-       ok( $o->write_blocks( $tag, $blocks ), "write_blocks $tag" );
-
-       my $new_afi = "\x42";
-
-       ok( $o->write_afi( $tag, $new_afi ), sprintf( "write_afi %s %x", $tag, $new_afi ) );
-
-       cmp_ok( $o->read_afi( $tag ), 'eq', $new_afi, 'AFI check' );
-
-       ok( $o->write_afi( $tag, $afi ), sprintf( "write_afi %s %x", $tag, $afi ) );
+       cmp_ok( $afi, '==', -1, 'afi' );
 
 }
 
-ok( my $visible = $o->scan, 'scan' );
-diag dump $visible;
-
+done_testing;