aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/time
Commit message (Collapse)AuthorAgeFilesLines
* Update to ruby/spec@9d69b95Benoit Daloze2023-01-058-27/+215
|
* Update to ruby/spec@740ccc8Benoit Daloze2022-11-075-7/+114
|
* Re-enable TZ test missed due to merge conflict.Vít Ondruch2022-09-271-2/+0
| | | | | | This was disabled by b7577b4d9e, while properly fixed upstream by: https://github.com/ruby/spec/pull/939
* Update to ruby/spec@d01709fBenoit Daloze2022-08-291-3/+3
|
* The tzdata 2022c removed Amsterdam Mean TimeNobuyoshi Nakada2022-08-171-0/+2
|
* Update to ruby/spec@3affe1eBenoit Daloze2022-04-253-83/+77
|
* Update to ruby/spec@b65d01fBenoit Daloze2021-07-296-273/+261
|
* Update to ruby/spec@fd6edddBenoit Daloze2021-03-271-0/+14
|
* Update to ruby/spec@37e52e5Benoit Daloze2021-02-271-6/+6
|
* Update to ruby/spec@8cafaa5Benoit Daloze2021-01-281-6/+20
|
* Use Integer instead of Fixnum/BignumNobuyoshi Nakada2020-12-212-3/+3
|
* Removed deprecated Time#succNobuyoshi Nakada2020-12-071-27/+29
|
* 2.8 -> 3.0 in specsBenoit Daloze2020-09-151-1/+1
|
* States Time.at expects rational-like argument to respond to #to_intNobuyoshi Nakada2020-08-281-0/+6
| | | | https://bugs.ruby-lang.org/issues/17131
* Fixed yday and wday with timezone [Bug #17024]Nobuyoshi Nakada2020-07-121-0/+4
|
* Update to ruby/spec@032ee74Benoit Daloze2020-05-0315-29/+29
|
* Update to ruby/spec@d394dfdBenoit Daloze2020-05-021-0/+7
|
* Drop support for ruby 2.4 from ruby/specNobuyoshi Nakada2020-04-012-52/+48
|
* spec/ruby/core/time/: Use near time for timezone testYusuke Endoh2020-03-293-7/+7
| | | | | | | | | | | | | | | | | `time_with_zone.zone.should == (time_with_zone - 60*60).zone` fails when the time is immediately before the change of summer time. https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11s/ruby-master/log/20200328T232504Z.fail.html.gz ``` 1) Time#+ preserves time zone FAILED Expected "CET" == "CEST" to be truthy but was false ``` It is acceptable as it fails at most twice per year, but it would be good to use near time objects to reduce the possibility.
* Update to ruby/spec@41bf282Benoit Daloze2020-02-282-6/+8
|
* Update to ruby/spec@f8a2d54Benoit Daloze2020-01-281-0/+15
|
* Fixed misspellingsNobuyoshi Nakada2019-12-201-1/+1
| | | | Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec.
* Update to ruby/spec@4eec3dcBenoit Daloze2019-11-301-0/+6
|
* Update to ruby/spec@28a728bBenoit Daloze2019-10-261-5/+5
|
* Refine Timezone fixtureNobuyoshi Nakada2019-09-153-18/+39
|
* Update to ruby/spec@875a09eBenoit Daloze2019-07-2711-75/+75
|
* Initialize DST flagNobuyoshi Nakada2019-07-271-1/+1
| | | | | * time.c (zone_timelocal): initialize DST flag by asking the timezone object. [Bug #15988]
* Update to ruby/spec@8d74d49Benoit Daloze2019-06-271-10/+12
|
* Add `Time#ceil`.manga_osyo2019-05-231-0/+45
| | | | Closes: https://github.com/ruby/ruby/pull/2133
* Update to ruby/spec@7de852dBenoit Daloze2019-04-282-11/+7
|
* Update to ruby/spec@15c9619Benoit Daloze2019-04-271-1/+14
|
* Add `Time#floor`nobu2019-04-201-0/+37
| | | | | | | | | [Feature #15653] [Fix GH-2092] From: manga_osyo <manga.osyo@gmail.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67632 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@7a16e01eregon2019-02-211-0/+6
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@6cf8ebeeregon2019-02-077-36/+450
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@cdd6ff7eregon2018-11-273-0/+12
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Refine Timezone class in test-specnobu2018-11-042-2/+15
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65525 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@8b743a3eregon2018-10-271-0/+16
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Timezone at Time#+ and Time#-nobu2018-10-081-0/+13
| | | | | | * time.c (time_add): support for Timezone. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Timezone support by Time [Feature #14850]nobu2018-10-082-0/+29
| | | | | | | | | * strftime.c (rb_strftime): support timezone object by `%z`. * time.c (time_init_1, time_new_timew, time_getlocaltime): accept timezone object as `off`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@9be7c7eeregon2018-08-031-1/+1
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* time.c: [DOC] Time#localtimenobu2018-07-021-0/+13
| | | | | | | * time.c: state that Time#localtime does nothing when nothing changes. [ruby-core:87675] [Bug #14880] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@a454137eregon2018-06-271-1/+0
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@4bb0f25eregon2018-06-131-0/+10
| | | | | | * Specs added by TruffleRuby. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63654 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@6f38a82eregon2018-04-281-1/+1
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63293 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@c1b568beregon2018-03-0463-96/+96
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@cbe855ceregon2018-02-272-2/+2
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@83063a3eregon2018-01-2922-39/+39
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@b95d7ederegon2017-12-271-11/+26
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61505 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@0fe33aceregon2017-12-271-0/+26
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61504 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Update to ruby/spec@595645feregon2017-12-151-0/+56
| | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e