01-instantiation.t 180 B

1234567
  1. use warnings;
  2. use strict;
  3. use Test::More 'tests' => 1;
  4. use Disk::SMART;
  5. my $smart = Disk::SMART->new('/dev/sda');
  6. pass('instantiation of object successful') if (defined($smart));