mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
fix source indent of ApplicationHelperTest#test_due_date_distance_in_words
git-svn-id: http://svn.redmine.org/redmine/trunk@19904 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1504,14 +1504,15 @@ class ApplicationHelperTest < Redmine::HelperTest
|
||||
end
|
||||
|
||||
def test_due_date_distance_in_words
|
||||
to_test = { Date.today => 'Due in 0 days',
|
||||
Date.today + 1 => 'Due in 1 day',
|
||||
Date.today + 100 => 'Due in about 3 months',
|
||||
Date.today + 20000 => 'Due in over 54 years',
|
||||
Date.today - 1 => '1 day late',
|
||||
Date.today - 100 => 'about 3 months late',
|
||||
Date.today - 20000 => 'over 54 years late',
|
||||
}
|
||||
to_test = {
|
||||
Date.today => 'Due in 0 days',
|
||||
Date.today + 1 => 'Due in 1 day',
|
||||
Date.today + 100 => 'Due in about 3 months',
|
||||
Date.today + 20000 => 'Due in over 54 years',
|
||||
Date.today - 1 => '1 day late',
|
||||
Date.today - 100 => 'about 3 months late',
|
||||
Date.today - 20000 => 'over 54 years late',
|
||||
}
|
||||
::I18n.locale = :en
|
||||
to_test.each do |date, expected|
|
||||
assert_equal expected, due_date_distance_in_words(date)
|
||||
|
||||
Reference in New Issue
Block a user