Expand notabs/eol testing to .pod and some files at the root
[dbsrgits/DBIx-Class.git] / t / 102load_classes.t
index e7e82f4..8936014 100644 (file)
@@ -1,12 +1,9 @@
-#!/usr/bin/perl
-
 use strict;
 use warnings;
 use Test::More;
 
-unshift(@INC, './t/lib');
-
-plan tests => 4;
+use lib 't/lib';
+use DBICTest;
 
 my $warnings;
 eval {
@@ -23,3 +20,4 @@ isa_ok($source_a, 'DBIx::Class::ResultSource::Table');
 my $rset_a   = DBICTest::Schema->resultset('Artist');
 isa_ok($rset_a, 'DBIx::Class::ResultSet');
 
+done_testing;