aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/date_and_time_behavior.rb
diff options
context:
space:
mode:
authorJon Rowe <hello@jonrowe.co.uk>2013-04-26 09:02:10 +1000
committerJon Rowe <hello@jonrowe.co.uk>2013-04-26 09:09:53 +1000
commit888f21492a230dd371ff4c88d3130027f32f1d91 (patch)
tree86b6b4a2b9921846347ed9180837770dd974487d /activesupport/test/core_ext/date_and_time_behavior.rb
parentd495606168f638b272f5775b2a0a796f13ab7c1b (diff)
downloadrails-888f21492a230dd371ff4c88d3130027f32f1d91.tar.gz
rails-888f21492a230dd371ff4c88d3130027f32f1d91.tar.bz2
rails-888f21492a230dd371ff4c88d3130027f32f1d91.zip
better document `next_week` functionaility closes #9568
Diffstat (limited to 'activesupport/test/core_ext/date_and_time_behavior.rb')
-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