From 6d688aa20c1075aa37134c2bfa9d7eae75f90437 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 2 Mar 2005 13:07:02 +0000 Subject: Added String#to_time and String#to_date for wrapping ParseDate git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@824 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/test/core_ext/string_ext_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activesupport/test/core_ext/string_ext_test.rb') diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb index 74a4010f91..f394509dd1 100644 --- a/activesupport/test/core_ext/string_ext_test.rb +++ b/activesupport/test/core_ext/string_ext_test.rb @@ -61,4 +61,10 @@ class StringInflectionsTest < Test::Unit::TestCase assert_equal(class_name, table_name.classify) end end + + def test_string_to_time + assert_equal Time.utc(2005, 2, 27, 23, 50), "2005-02-27 23:50".to_time + assert_equal Time.local(2005, 2, 27, 23, 50), "2005-02-27 23:50".to_time(:local) + assert_equal Date.new(2005, 2, 27), "2005-02-27".to_date + end end -- cgit v1.2.3