mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
You can now use cache in instance hierachies. This allows ActiveRecord::Base.cache { } usage to cache everything
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6179 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -3,10 +3,8 @@ require 'fixtures/topic'
|
||||
require 'fixtures/reply'
|
||||
require 'fixtures/task'
|
||||
|
||||
|
||||
class QueryCacheTest < Test::Unit::TestCase
|
||||
fixtures :tasks
|
||||
|
||||
|
||||
def test_find_queries
|
||||
assert_queries(2) { Task.find(1); Task.find(1) }
|
||||
@@ -23,14 +21,32 @@ class QueryCacheTest < Test::Unit::TestCase
|
||||
assert_queries(1) { Task.find(1); Task.find(1) }
|
||||
end
|
||||
end
|
||||
|
||||
def test_query_cache_returned
|
||||
assert_not_equal ActiveRecord::QueryCache, Task.connection.class
|
||||
Task.cache do
|
||||
assert_equal ActiveRecord::QueryCache, Task.connection.class
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def test_cache_is_scoped_on_actual_class_only
|
||||
Task.cache do
|
||||
assert_queries(2) { Topic.find(1); Topic.find(1) }
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def test_cache_is_scoped_on_all_descending_classes
|
||||
ActiveRecord::Base.cache do
|
||||
assert_queries(1) { Task.find(1); Task.find(1) }
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
|
||||
|
||||
uses_mocha('QueryCacheExpiryTest') do
|
||||
|
||||
class QueryCacheExpiryTest < Test::Unit::TestCase
|
||||
|
||||
Reference in New Issue
Block a user