Bring out the big-paranoia-harness - make describe_env infallible
[dbsrgits/DBIx-Class.git] / t / schema / anon.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
551e711a 3use strict;
4use warnings;
5use Test::More;
6use Test::Exception;
7
c0329273 8
551e711a 9use DBICTest;
10
11lives_ok (sub {
12 DBICTest->init_schema()->resultset('Artist')->find({artistid => 1 })->update({name => 'anon test'});
13}, 'Schema object not lost in chaining');
14
15done_testing;