X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/47362f432a9bd10196b27aa1667e6166b76f4b66..eaabf7bb592d9cb986f25347350845c80a671091:/test/helpers/note_helper_test.rb?ds=sidebyside diff --git a/test/helpers/note_helper_test.rb b/test/helpers/note_helper_test.rb index d5f3021fb..bee1cdc2c 100644 --- a/test/helpers/note_helper_test.rb +++ b/test/helpers/note_helper_test.rb @@ -5,11 +5,11 @@ class NoteHelperTest < ActionView::TestCase include ApplicationHelper def test_note_event - date = Time.new(2014, 3, 5, 21, 37, 45, "+00:00") + date = Time.utc(2014, 3, 5, 21, 37, 45) user = create(:user) - assert_match %r{^Created by anonymous <abbr title='Wed, 05 Mar 2014 21:37:45 \+0000'><span title=" 5 March 2014 at 21:37">.* ago</span></abbr>$}, note_event("opened", date, nil) - assert_match %r{^Resolved by <a href="/user/#{ERB::Util.u(user.display_name)}">#{user.display_name}</a> <abbr title='Wed, 05 Mar 2014 21:37:45 \+0000'><span title=" 5 March 2014 at 21:37">.* ago</span></abbr>$}, note_event("closed", date, user) + assert_match %r{^Created by anonymous <time title=" 5 March 2014 at 21:37" datetime="2014-03-05T21:37:45Z">.* ago</time>$}, note_event("opened", date, nil) + assert_match %r{^Resolved by <a href="/user/#{ERB::Util.u(user.display_name)}">#{user.display_name}</a> <time title=" 5 March 2014 at 21:37" datetime="2014-03-05T21:37:45Z">.* ago</time>$}, note_event("closed", date, user) end def test_note_author @@ -21,13 +21,4 @@ class NoteHelperTest < ActionView::TestCase assert_equal "<a href=\"/user/#{ERB::Util.u(user.display_name)}\">#{user.display_name}</a>", note_author(user) assert_equal "<a href=\"http://test.host/user/#{ERB::Util.u(user.display_name)}\">#{user.display_name}</a>", note_author(user, :only_path => false) end - - def test_disappear_in - note_closed_date = Time.new(2022, 1, 1, 12, 0, 0, "+00:00") - note = create(:note, :closed_at => note_closed_date) - - travel_to note_closed_date + 1.day do - assert_match %r{^<span title=" 8 January 2022 at 12:00">6 days</span>$}, disappear_in(note) - end - end end