Switch CDBICompat and its tests to OptDeps
[dbsrgits/DBIx-Class.git] / t / cdbi / hasa_without_loading.t
CommitLineData
83eef562 1use DBIx::Class::Optional::Dependencies -skip_all_without => 'cdbicompat';
2
e60dc79f 3use strict;
4a233f30 4use warnings;
83eef562 5
e60dc79f 6use Test::More;
7
d9bd5195 8use lib 't/cdbi/testlib';
e60dc79f 9
10package Foo;
11
c0b5f828 12use base qw(DBIx::Class::CDBICompat);
e60dc79f 13
14eval {
15 Foo->table("foo");
16 Foo->columns(Essential => qw(foo bar));
c0b5f828 17 #Foo->has_a( bar => "This::Does::Not::Exist::Yet" );
e60dc79f 18};
c0b5f828 19#::is $@, '';
e60dc79f 20::is(Foo->table, "foo");
21::is_deeply [sort map lc, Foo->columns], [sort map lc, qw(foo bar)];
d9bd5195 22
23::done_testing;