aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/time_with_zone_test.rb
Commit message (Expand)AuthorAgeFilesLines
* updated Time, Date and DateTime current methods in AS to use Time.zone and no...Josh Kalderimis2011-02-281-7/+8
* prefering psych as the yaml parser if possible, fixing assertions for YAML 1....Aaron Patterson2011-01-211-2/+2
* make our yaml output consistentAaron Patterson2011-01-041-1/+1
* Fix ActiveSupport::TimeWithZone#localtime method with DateTimeAlvaro Bautista2010-11-111-0/+11
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-3/+3
* Don't store incorrect values in zones_mapSantiago Pastorino2010-06-281-3/+1
* when the timezone is nil, a TimeWithZone object should not be constructed. [#...Aaron Patterson2010-06-171-0/+7
* Fix test incorrectly using a bare assert to use assert_kind_ofSantiago Pastorino2010-05-241-1/+1
* Final iteration of use better testing methodsNeeraj Singh2010-05-191-6/+6
* Switch to TimezoneProxy for later support of deferred TZ loadingJeremy Kemper2010-04-201-2/+5
* Ensure test sets json time format flagJeremy Kemper2010-01-281-1/+4
* Add test for TimeWithZone#to_i with wrapped DateTimeGeoff Buesing2009-12-151-0/+6
* Pull in time extensions alsoJeremy Kemper2009-06-051-1/+1
* Work around Float faux precisionJeremy Kemper2009-04-301-1/+1
* * Add pluggable JSON backends with support for the JSON gem. [rick]rick2009-04-231-2/+2
* Fix dependencies revealed by testing in isolationJeremy Kemper2009-04-221-0/+1
* Merge branch 'master' into cherryJeremy Kemper2009-04-201-0/+4
|\
| * TimeWithZone.name returns 'Time', to further thwart type checkingGeoff Buesing2009-04-051-0/+4
* | Explicit test dependenciesJeremy Kemper2009-03-281-0/+1
|/
* Ruby 1.9 compat: rename deprecated assert_raises to assert_raise.Jeremy Kemper2009-03-081-1/+1
* Remove obsolete silence_warnings wrappers from TZInfo-dependent tests in Acti...Levin Alexander2009-02-141-254/+162
* Make TimeWithZone#to_formatted_s an alias to TimeWithZone#to_s [#1796 state:r...Levin Alexander2009-02-081-0/+6
* TimeWithZone#xmlschema accepts optional fraction_digits argument [#1725 state...Nicholas Dainty2009-01-111-0/+9
* TimeWithZone#- gives correct result with wrapped DateTime, and with DateTime ...gbuesing2009-01-041-0/+9
* Require mocha >= 0.9.0 for AS testsJeremy Kemper2008-11-221-72/+66
* TimeWithZone#freeze: preload instance variables so that we can actually freezegbuesing2008-10-191-0/+13
* TimeWithZone #wday, #yday and #to_date avoid trip through #method_missinggbuesing2008-09-141-1/+3
* Add thorough tests for Time-object #past?, #future? and #today. Fix TimeWithZ...gbuesing2008-09-141-10/+49
* Introduce convenience methods past?, today? and future? for Date and Time cla...Clemens Kofler2008-09-141-9/+22
* Fix TimeWithZone unmarshaling: coerce unmarshaled Time instances to utc, beca...gbuesing2008-07-141-0/+6
* TimeWithZone: when crossing DST boundary, treat Durations of days, months or ...gbuesing2008-06-291-0/+168
* Wrap date part value method tests inside a uses mocha block.Joshua Peek2008-06-071-16/+18
* Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...Joshua Peek2008-06-031-120/+120
* TimeWithZone #+ and #- : ensure overflow to DateTime with Numeric arggbuesing2008-05-181-0/+7
* Include time zone offset in TimeWithZone#to_jsonDaniel Morrison2008-05-131-1/+1
* TimeWithZone: date part getter methods (#year #mon #day etc) are defined on c...gbuesing2008-05-081-1/+9
* Duration #since and #ago with no argument (e.g., 5.days.ago) return TimeWithZ...gbuesing2008-04-201-0/+24
* TimeWithZone respects config.active_support.use_standard_json_time_formatgbuesing2008-04-121-0/+7
* TimeWithZone: Adding tests for dst and leap day edge cases when advancing timeGeoff Buesing2008-04-021-0/+35
* TimeWithZone#method_missing: send to utc to advance with dst correctness, oth...Geoff Buesing2008-04-021-0/+63
* Removing unnecessary uses_tzinfo helper from tests, given that TZInfo is now ...Geoff Buesing2008-03-301-456/+453
* Ensure threads finish running for time zone thread safety test.Josh Peek2008-03-291-2/+4
* config.time_zone and TimeWithZone#marshal_load accept tzinfo/Olson identifiersGeoff Buesing2008-03-281-0/+11
* Time.zone= accepts TZInfo::Timezone instances and Olson identifiers; wraps re...Geoff Buesing2008-03-281-0/+28
* TimeWithZone time conversions don't need to be wrapped in TimeOrDateTime, bec...Geoff Buesing2008-03-281-0/+12
* TimeWithZone#usec returns 0 instead of error when DateTime is wrappedGeoff Buesing2008-03-281-0/+7
* Ensure that TimeWithZone#to_yaml works when passed a YAML::Emitter. [rick]Rick Olson2008-03-231-0/+6
* Ensure correct TimeWithZone#to_dateGeoff Buesing2008-03-221-0/+13
* Make TimeWithZone work with tzinfo 0.2.x: use TZInfo::Timezone#zone_identifie...Geoff Buesing2008-03-211-80/+138
* Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing...Geoff Buesing2008-03-171-25/+25