X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2F10-3M-810.t;h=ae2e961cc06ada6f7e4e2518f4b72fefb9019e9b;hb=3ff7f5a9164a997ac22c5f91c59439d779791895;hp=66938c113ced32f0b3afa35eb50112c56595007a;hpb=b9bf276a9f48c5d2b5aa14473df14ca37dc1d76a;p=Biblio-RFID.git diff --git a/t/10-3M-810.t b/t/10-3M-810.t index 66938c1..ae2e961 100755 --- a/t/10-3M-810.t +++ b/t/10-3M-810.t @@ -11,5 +11,11 @@ BEGIN { ok( my $o = RFID::Serial::3M810->new( device => '/dev/ttyUSB0' ), 'new' ); -ok( my $inventory = $o->inventory, 'inventory' ); +ok( my @tags = $o->inventory, 'inventory' ); +diag dump @tags; + +ok( my $blocks = $o->read_blocks( $_ ), "read_blocks $_" ) foreach @tags; + +ok( my $visible = $o->scan, 'scan' ); +diag dump $visible;