]> git.openstreetmap.org Git - rails.git/blob - test/helpers/note_helper_test.rb
Add thunderforest API key to example configuration
[rails.git] / test / helpers / note_helper_test.rb
1 require "test_helper"
2
3 class NoteHelperTest < ActionView::TestCase
4   include ERB::Util
5   include ApplicationHelper
6
7   fixtures :users
8
9   def test_note_event
10     date = Time.new(2014, 3, 5, 21, 37, 45, "+00:00")
11
12     assert_match %r{^Created by anonymous <abbr title='Wed, 05 Mar 2014 21:37:45 \+0000'><span title=" 5 March 2014 at 21:37">.*</span> ago</abbr>$}, note_event("open", date, nil)
13     assert_match %r{^Resolved by <a href="/user/test2">test2</a> <abbr title='Wed, 05 Mar 2014 21:37:45 \+0000'><span title=" 5 March 2014 at 21:37">.*</span> ago</abbr>$}, note_event("closed", date, users(:public_user))
14   end
15
16   def test_note_author
17     assert_equal "", note_author(nil)
18     assert_equal "deleted", note_author(users(:deleted_user))
19     assert_equal "<a href=\"/user/test2\">test2</a>", note_author(users(:public_user))
20     assert_equal "<a href=\"http://test.host/user/test2\">test2</a>", note_author(users(:public_user), :only_path => false)
21   end
22 end