diff options
author | Steve Kemp <steve@steve.org.uk> | 2013-06-24 13:52:44 +0100 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2013-06-24 13:52:44 +0100 |
commit | d5bdfdb5c40ef4d9df9ee8c01b4b621642611ec1 (patch) | |
tree | 415403be9903b350eb1ec036c6c7edbe9550d1d8 | |
parent | 1e27c60e5db7297948f80c9134b1bf5153b19c69 (diff) |
The worst-case for testing a time-period, and one used in the
parser test, is matching against a period that covers the full
24 hours.
Correctly terminate this case, and add a new test-case to ensure
that this is always correct.
-rwxr-xr-x | lib/custodian/util/timespan.rb | 2 | ||||
-rwxr-xr-x | t/test-custodian-util-timespan.rb | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/lib/custodian/util/timespan.rb b/lib/custodian/util/timespan.rb index a43ca55..27ece7a 100755 --- a/lib/custodian/util/timespan.rb +++ b/lib/custodian/util/timespan.rb @@ -78,7 +78,7 @@ module Custodian while( hour != p_end ) valid[hour] = 1 hour += 1 - hour = 0 if ( hour >= 23 ) + hour = 0 if ( hour > 23 ) end valid[p_end]=1 diff --git a/t/test-custodian-util-timespan.rb b/t/test-custodian-util-timespan.rb index 307a171..048f582 100755 --- a/t/test-custodian-util-timespan.rb +++ b/t/test-custodian-util-timespan.rb @@ -150,4 +150,17 @@ class TestTimeSpanUtil < Test::Unit::TestCase end + + # + # Since the implementation of our test involves + # iterating over the specified period then any 24-hour + # period is the worst case. + # + # + def test_worst() + for i in 0..23 + assert( Custodian::Util::TimeSpan.inside?( 0, 23, i ) ) + end + + end end |