From 85fa238bca9e01eb1816cb85f4d67f16f55c189e Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 23 Feb 2005 16:29:13 +0000 Subject: [PATCH] Moved over TimeZone test too git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@770 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- {activerecord => activesupport}/test/time_zone_test.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename {activerecord => activesupport}/test/time_zone_test.rb (96%) diff --git a/activerecord/test/time_zone_test.rb b/activesupport/test/time_zone_test.rb similarity index 96% rename from activerecord/test/time_zone_test.rb rename to activesupport/test/time_zone_test.rb index 1fbfb95a62a..66f1a1b0585 100644 --- a/activerecord/test/time_zone_test.rb +++ b/activesupport/test/time_zone_test.rb @@ -1,8 +1,7 @@ require 'test/unit' -require File.dirname(__FILE__)+'/../lib/active_record/values/time_zone' +require File.dirname(__FILE__)+'/../lib/active_support/values/time_zone' class TimeZoneTest < Test::Unit::TestCase - class MockTime def self.now Time.utc( 2004, 7, 25, 14, 49, 00 ) @@ -74,5 +73,4 @@ class TimeZoneTest < Test::Unit::TestCase assert_same a, b assert_nil TimeZone.new("bogus") end - end