X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F09schema_options.t;h=3a9d98b3cacec2f80d13ab2dfdd57439152f382d;hb=4c7770ddf435bacaa6eae1a8debe3dacfefeddce;hp=af1356cb5b77dc4c08e5557d9ae34b7fb3660bf0;hpb=21d8159f80adbd21755cdd5481e9f4cf2f9a5ac2;p=catagits%2FCatalyst-Model-DBIC-Schema.git diff --git a/t/09schema_options.t b/t/09schema_options.t index af1356c..3a9d98b 100644 --- a/t/09schema_options.t +++ b/t/09schema_options.t @@ -23,7 +23,7 @@ is $m->schema->a_schema_option, 'pass the crack pipe', 'delegation works'; ok(($m = instance(schema_class => 'AnotherSchemaClass')), 'instance'); -is $m->resultset('Users')->rs_config_option, 'configured rs value', +is $m->resultset('User')->rs_config_option, 'configured rs value', 'ResultSet option passed from config'; done_testing; @@ -41,7 +41,7 @@ BEGIN { package MyApp; use Catalyst; __PACKAGE__->config({ - 'Model::DB::Users' => { + 'Model::DB::User' => { rs_config_option => 'configured rs value', }, });