mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* untabified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9f698ff1d5
commit
a000c52b83
1 changed files with 8 additions and 8 deletions
|
@ -72,19 +72,19 @@ class TestDateStrftime < Test::Unit::TestCase
|
|||
assert_equal(s[0], d.strftime(f), [f, s].inspect)
|
||||
case f[-1,1]
|
||||
when 'c', 'C', 'x', 'X', 'y', 'Y'
|
||||
f2 = f.sub(/\A%/, '%E')
|
||||
assert_equal(s[0], d.strftime(f2), [f2, s].inspect)
|
||||
f2 = f.sub(/\A%/, '%E')
|
||||
assert_equal(s[0], d.strftime(f2), [f2, s].inspect)
|
||||
else
|
||||
f2 = f.sub(/\A%/, '%E')
|
||||
assert_equal(f2, d.strftime(f2), [f2, s].inspect)
|
||||
f2 = f.sub(/\A%/, '%E')
|
||||
assert_equal(f2, d.strftime(f2), [f2, s].inspect)
|
||||
end
|
||||
case f[-1,1]
|
||||
when 'd', 'e', 'H', 'k', 'I', 'l', 'm', 'M', 'S', 'u', 'U', 'V', 'w', 'W', 'y'
|
||||
f2 = f.sub(/\A%/, '%O')
|
||||
assert_equal(s[0], d.strftime(f2), [f2, s].inspect)
|
||||
f2 = f.sub(/\A%/, '%O')
|
||||
assert_equal(s[0], d.strftime(f2), [f2, s].inspect)
|
||||
else
|
||||
f2 = f.sub(/\A%/, '%O')
|
||||
assert_equal(f2, d.strftime(f2), [f2, s].inspect)
|
||||
f2 = f.sub(/\A%/, '%O')
|
||||
assert_equal(f2, d.strftime(f2), [f2, s].inspect)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue