X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F01core.tl;h=da0a6a314412496602235a39bf90f7dfc6060f37;hb=90e6de6c3dac0089fa0cea83db3251f3c6ca393d;hp=a2c35b71737ed84967c363ad9e943944659f0244;hpb=bc09ebfa1b86dfad0385eeed33282182b77283ff;p=dbsrgits%2FDBIx-Class.git diff --git a/t/run/01core.tl b/t/run/01core.tl index a2c35b7..da0a6a3 100644 --- a/t/run/01core.tl +++ b/t/run/01core.tl @@ -1,6 +1,6 @@ sub run_tests { -plan tests => 28; +plan tests => 29; my @art = DBICTest::Artist->search({ }, { order_by => 'name DESC'}); @@ -112,6 +112,8 @@ eval { DBICTest::Track->load_components('DoesNotExist'); }; ok $@, $@; +is(DBICTest::Artist->field_name_for->{name}, 'artist name', 'mk_classdata usage ok'); + } 1;