01-instantiation.t 183 B

12345678
  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) );