aboutsummaryrefslogtreecommitdiffstats
path: root/t/lib/RTest/TestDB/Foo.pm
diff options
context:
space:
mode:
authorgroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-10-05 19:28:51 +0000
committergroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-10-05 19:28:51 +0000
commita5200252cbe43d0d240e75e95d9dfd1623975172 (patch)
tree2e6bae8f6c6cdee2f762c716bd33c98b632fba5b /t/lib/RTest/TestDB/Foo.pm
parentde48f4e69aef2efba652b10994a920d6a61e856d (diff)
downloadreaction-a5200252cbe43d0d240e75e95d9dfd1623975172.tar.gz
reaction-a5200252cbe43d0d240e75e95d9dfd1623975172.zip
simplify value widgets to reduce PROCESS calls, make some classes immutable which were not before. nice increase in performance.
Diffstat (limited to 't/lib/RTest/TestDB/Foo.pm')
-rw-r--r--t/lib/RTest/TestDB/Foo.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/lib/RTest/TestDB/Foo.pm b/t/lib/RTest/TestDB/Foo.pm
index 5733054..7e3cd2f 100644
--- a/t/lib/RTest/TestDB/Foo.pm
+++ b/t/lib/RTest/TestDB/Foo.pm
@@ -39,4 +39,7 @@ __PACKAGE__->many_to_many('baz_list' => 'links_to_baz_list' => 'baz');
*get_baz_list = sub { [ shift->baz_list->all ] };
}
+
+__PACKAGE__->meta->make_immutable;
+
1;