Improve test name related to cache timestamp format [ci skip]

Conflicts:
	activerecord/test/cases/base_test.rb
This commit is contained in:
Carlos Antonio da Silva 2012-12-11 21:52:21 -02:00
parent a565f80bcb
commit 5353795c0d
1 changed files with 1 additions and 1 deletions

View File

@ -1444,7 +1444,7 @@ class BasicsTest < ActiveRecord::TestCase
assert_equal "developers/#{dev.id}-#{dev.updated_at.utc.to_s(:nsec)}", dev.cache_key
end
def test_cache_key_format_for_existing_record_with_updated_at_and_cache_timestamp_format_set
def test_cache_key_format_for_existing_record_with_updated_at_and_custom_cache_timestamp_format
dev = CachedDeveloper.first
assert_equal "cached_developers/#{dev.id}-#{dev.updated_at.utc.to_s(:number)}", dev.cache_key
end