Sha256: 47c14bc3ac871f25c2ede38f9f150f1e155a6dbd646dcb654cb7527ab1c62b5e
Contents?: true
Size: 946 Bytes
Versions: 6
Compression:
Stored size: 946 Bytes
Contents
# -*- encoding : utf-8 -*- require 'active_record/test_helper' class ActiveRecord::BaseTest < Test::Unit::TestCase def setup @user = User.create :name => 'csdn', :email => 'test@csdn.com' end def test_should_update_cache_when_update_attributes @user.update_attributes :name => 'change' assert_equal @user.name, User.read_second_level_cache(@user.id).name end def test_should_update_cache_when_update_attribute @user.update_attribute :name, 'change' assert_equal @user.name, User.read_second_level_cache(@user.id).name end def test_should_expire_cache_when_destroy @user.destroy assert_nil User.read_second_level_cache(@user.id) end def test_should_expire_cache_when_update_counters assert_equal @user.books_count, 0 @user.books.create assert_nil User.read_second_level_cache(@user.id) user = User.find(@user.id) assert_equal user.books_count, @user.books_count + 1 end end
Version data entries
6 entries across 6 versions & 1 rubygems