3 class UserBlocksHelperTest < ActionView::TestCase
4 include ApplicationHelper
7 block = create(:user_block, :needs_view, :ends_at => Time.now.getutc)
8 assert_equal "Active until the user logs in.", block_status(block)
10 block = create(:user_block, :needs_view, :ends_at => Time.now.getutc + 1.hour)
11 assert_match %r{^Ends in <span title=".*">about 1 hour</span> and after the user has logged in\.$}, block_status(block)
13 block = create(:user_block, :ends_at => Time.now.getutc + 1.hour)
14 assert_match %r{^Ends in <span title=".*">about 1 hour</span>\.$}, block_status(block)
17 def test_block_duration_in_words
18 words = block_duration_in_words(364.days)
19 assert_equal "11 months", words
21 words = block_duration_in_words(24.hours)
22 assert_equal "1 day", words
24 # Ensure that nil hours is not passed to i18n.t
25 words = block_duration_in_words(10.minutes)
26 assert_equal "0 hours", words
28 words = block_duration_in_words(0)
29 assert_equal "0 hours", words
31 # Ensure that (slightly) negative durations don't mess everything up
32 # This can happen on zero hour blocks when ends_at is a millisecond before created_at
33 words = block_duration_in_words(-0.001)
34 assert_equal "0 hours", words