1use strict;
2use Test::More;
3
4BEGIN {
5  eval "use DBIx::Class::CDBICompat;";
6  plan $@ ? (skip_all => 'Class::Trigger and DBIx::ContextualFetch required')
7          : (tests=> 2);
8}
9
10package Foo;
11
12use base qw(DBIx::Class::CDBICompat);
13
14eval {
15    Foo->table("foo");
16    Foo->columns(Essential => qw(foo bar));
17    #Foo->has_a( bar => "This::Does::Not::Exist::Yet" );
18};
19#::is $@, '';
20::is(Foo->table, "foo");
21::is_deeply [sort map lc, Foo->columns], [sort map lc, qw(foo bar)];
22