Sha256: d364ed0244d795a813ac2a71797c448847cf5656822eaecd00bcb8b78d63c625
Contents?: true
Size: 893 Bytes
Versions: 2
Compression:
Stored size: 893 Bytes
Contents
# -*- encoding : utf-8 -*- require 'active_record/test_helper' class ActiveRecord::PersistenceTest < Minitest::Test def setup @user = User.create :name => 'csdn', :email => 'test@csdn.com' @topic = Topic.create :title => "csdn" end def test_should_reload_object User.increment_counter :books_count, @user.id assert_equal 0, @user.books_count assert_equal 1, @user.reload.books_count end def test_should_update_cache_after_touch old_updated_time = @user.updated_at @user.touch assert !(old_updated_time == @user.updated_at) new_user = User.find @user.id assert_equal new_user, @user end def test_should_update_cache_after_update_column @user.update_column :name, "new_name" new_user = User.find @user.id assert_equal new_user, @user end def test_should_return_true_if_touch_ok assert @topic.touch == true end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
second_level_cache-2.1.0.rc2 | test/active_record/persistence_test.rb |
second_level_cache-2.1.0.rc1 | test/active_record/persistence_test.rb |