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 %r{^Created by anonymous .* ago$}, note_event("open", date, nil)
assert_match %r{^Resolved by test2 .* ago$}, note_event("closed", date, users(:public_user))
end
def test_note_author
assert_equal "", note_author(nil)
assert_equal "anonymous", note_author(users(:deleted_user))
assert_equal "test2", note_author(users(:public_user))
assert_equal "test2", note_author(users(:public_user), :only_path => false)
end
end