summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-25 09:53:58 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-25 09:53:58 +0000
commit4d6e966f6bbcb73c75ebeaa1295b0849eb117957 (patch)
tree0cfb03e5b6dad725d7a4b41dad627380bb81bc34 /test/ruby
parent80519f7e49d830ba024930cd96dd7eddbf0528da (diff)
merges r20944 from trunk into ruby_1_9_1.
* strftime.c (rb_strftime): use locale insensitive functions for tr_TR locale. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_time.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_time.rb b/test/ruby/test_time.rb
index a1a5bfc7f..b56fae083 100644
--- a/test/ruby/test_time.rb
+++ b/test/ruby/test_time.rb
@@ -468,5 +468,6 @@ class TestTime < Test::Unit::TestCase
assert_equal("JAN", T2000.strftime("%#b"))
assert_equal("JANUARY", T2000.strftime("%#B"))
assert_equal("JAN", T2000.strftime("%#h"))
+ assert_equal("FRIDAY", Time.local(2008,1,4).strftime("%#A"))
end
end