aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-04-26 01:49:06 -0700
committerXavier Noria <fxn@hashref.com>2013-04-26 01:49:06 -0700
commit11e23b9561b9a7dc0a7b79e6575f56c36e63acc0 (patch)
tree1f7896a2e24c408aff35ed796d795c182acbee2f /activesupport/test
parent23b6e9d85d4a57ab0a24ae5e03965ff6c8de5bca (diff)
parente33dd308c9ef395d812c27ec16955bf0d04736c5 (diff)
downloadrails-11e23b9561b9a7dc0a7b79e6575f56c36e63acc0.tar.gz
rails-11e23b9561b9a7dc0a7b79e6575f56c36e63acc0.tar.bz2
rails-11e23b9561b9a7dc0a7b79e6575f56c36e63acc0.zip
Merge pull request #10351 from JonRowe/update_as_date_next_week_to_document_intent
Propose better documentation for ActiveSupports `next_week` functionaility
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/date_and_time_behavior.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/date_and_time_behavior.rb b/activesupport/test/core_ext/date_and_time_behavior.rb
index 9927856aa2..b4ef5a0597 100644
--- a/activesupport/test/core_ext/date_and_time_behavior.rb
+++ b/activesupport/test/core_ext/date_and_time_behavior.rb
@@ -95,6 +95,11 @@ module DateAndTimeBehavior
end
def test_next_week
+ # M | T | W | T | F | S | S # M | T | W | T | F | S | S #
+ # | 22/2 | | | | | # 28/2 | | | | | | # monday in next week `next_week`
+ # | 22/2 | | | | | # | | | | 4/3 | | # friday in next week `next_week(:friday)`
+ # 23/10 | | | | | | # 30/10 | | | | | | # monday in next week `next_week`
+ # 23/10 | | | | | | # | | 1/11 | | | | # wednesday in next week `next_week(:wednesday)`
assert_equal date_time_init(2005,2,28,0,0,0), date_time_init(2005,2,22,15,15,10).next_week
assert_equal date_time_init(2005,3,4,0,0,0), date_time_init(2005,2,22,15,15,10).next_week(:friday)
assert_equal date_time_init(2006,10,30,0,0,0), date_time_init(2006,10,23,0,0,0).next_week