From: Rob Kinyon Date: Tue, 3 Mar 2009 14:27:57 +0000 (+0000) Subject: Merge 'trunk' into 'prefetch' X-Git-Tag: v0.08240~51 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5cf3624de2d229b07dd87dbe6efa971626cf6b08;p=dbsrgits%2FDBIx-Class.git Merge 'trunk' into 'prefetch' r5676@rkinyon-lt-osx (orig r5675): ribasushi | 2009-03-03 04:30:15 -0500 Rewrite t/54taint.t to properly test load_namespaces() r5677@rkinyon-lt-osx (orig r5676): ribasushi | 2009-03-03 04:44:52 -0500 Extend untainting of findallmod() to load_namespaces as well as load_classes --- 5cf3624de2d229b07dd87dbe6efa971626cf6b08 diff --cc t/lib/DBICTest/Taint/Test.pm index 0000000,0000000..e950278 new file mode 100644 --- /dev/null +++ b/t/lib/DBICTest/Taint/Test.pm @@@ -1,0 -1,0 +1,18 @@@ ++package # hide from PAUSE ++ DBICTest::Plain::Test; ++ ++use base 'DBIx::Class::Core'; ++ ++__PACKAGE__->table('test'); ++__PACKAGE__->add_columns( ++ 'id' => { ++ data_type => 'integer', ++ is_auto_increment => 1 ++ }, ++ 'name' => { ++ data_type => 'varchar', ++ }, ++); ++__PACKAGE__->set_primary_key('id'); ++ ++1;