mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/date] Use omit instead of skip for test-unit
https://github.com/ruby/date/commit/537f3f681e
This commit is contained in:
parent
236678b823
commit
7f5e06601b
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class TestDateStrftime < Test::Unit::TestCase
|
|||
|
||||
def test_strftime__3_2
|
||||
s = Time.now.strftime('%G')
|
||||
skip if s.empty? || s == '%G'
|
||||
omit if s.empty? || s == '%G'
|
||||
(Date.new(1970,1,1)..Date.new(2037,12,31)).each do |d|
|
||||
t = Time.utc(d.year,d.mon,d.mday)
|
||||
assert_equal(t.strftime('%G'), d.strftime('%G'))
|
||||
|
|
Loading…
Reference in a new issue