aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2010-01-04 16:50:01 -0600
committerJoshua Peek <josh@joshpeek.com>2010-01-04 16:50:01 -0600
commite5ed62deea3f281f9dafc8e7c9ae4354b5ad6a27 (patch)
treeb6f2f38dc3a23b4db52172717befeab304d21b01 /activerecord/lib/active_record.rb
parent640d9e7e32d9ad67cf81a686aad80266fee7fa61 (diff)
downloadrails-e5ed62deea3f281f9dafc8e7c9ae4354b5ad6a27.tar.gz
rails-e5ed62deea3f281f9dafc8e7c9ae4354b5ad6a27.tar.bz2
rails-e5ed62deea3f281f9dafc8e7c9ae4354b5ad6a27.zip
Autoload AR test case
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rw-r--r--activerecord/lib/active_record.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index 728dec8925..d5b6d40514 100644
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -134,6 +134,9 @@ module ActiveRecord
autoload :AbstractAdapter
end
end
+
+ autoload :TestCase
+ autoload :TestFixtures, 'active_record/fixtures'
end
Arel::Table.engine = Arel::Sql::Engine.new(ActiveRecord::Base)