aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/time_ext_test.rb
diff options
context:
space:
mode:
authorGagan Awhad <gagan.awhad@desiringgod.org>2013-02-21 14:22:50 -0600
committerGagan Awhad <gagan.awhad@desiringgod.org>2013-02-21 16:14:16 -0600
commit6f380d37788a562c13d0d68b1d3f28f8a6f4b3ec (patch)
tree3f7a276045f28f46cfb3c0e40ca1edce4593eddf /activesupport/test/core_ext/time_ext_test.rb
parent389397952460d09218bb407be1142e0b62cf3f4f (diff)
downloadrails-6f380d37788a562c13d0d68b1d3f28f8a6f4b3ec.tar.gz
rails-6f380d37788a562c13d0d68b1d3f28f8a6f4b3ec.tar.bz2
rails-6f380d37788a562c13d0d68b1d3f28f8a6f4b3ec.zip
Added beginning_of_minute support to core_ext calculations for Time and DateTime
Diffstat (limited to 'activesupport/test/core_ext/time_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/time_ext_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/time_ext_test.rb b/activesupport/test/core_ext/time_ext_test.rb
index 43c92003dc..2864d7a57f 100644
--- a/activesupport/test/core_ext/time_ext_test.rb
+++ b/activesupport/test/core_ext/time_ext_test.rb
@@ -121,6 +121,10 @@ class TimeExtCalculationsTest < ActiveSupport::TestCase
assert_equal Time.local(2005,2,4,19,0,0), Time.local(2005,2,4,19,30,10).beginning_of_hour
end
+ def test_beginning_of_minute
+ assert_equal Time.local(2005,2,4,19,30,0), Time.local(2005,2,4,19,30,10).beginning_of_minute
+ end
+
def test_end_of_day
assert_equal Time.local(2007,8,12,23,59,59,Rational(999999999, 1000)), Time.local(2007,8,12,10,10,10).end_of_day
with_env_tz 'US/Eastern' do
@@ -137,6 +141,10 @@ class TimeExtCalculationsTest < ActiveSupport::TestCase
assert_equal Time.local(2005,2,4,19,59,59,Rational(999999999, 1000)), Time.local(2005,2,4,19,30,10).end_of_hour
end
+ def test_end_of_minute
+ assert_equal Time.local(2005,2,4,19,30,59,Rational(999999999, 1000)), Time.local(2005,2,4,19,30,10).end_of_minute
+ end
+
def test_last_year
assert_equal Time.local(2004,6,5,10), Time.local(2005,6,5,10,0,0).last_year
end