require 'test_helper' class NoteHelperTest < ActionView::TestCase include ERB::Util include ApplicationHelper fixtures :users def test_note_event date = Time.new(2014, 3, 5, 21, 37, 45, "+00:00") assert_match /^Created by anonymous .*<\/span> ago<\/abbr>$/, note_event("open", date, nil) assert_match /^Resolved by test2<\/a> .*<\/span> ago<\/abbr>$/, note_event("closed", date, users(:public_user)) end def test_note_author assert_equal "", note_author(nil) assert_equal "test2", note_author(users(:public_user)) assert_equal "test2", note_author(users(:public_user), :only_path => false) end end