Use user factory for note model test.

This commit is contained in:
Andy Allan 2017-03-09 11:06:07 +00:00
parent 8a6956eb22
commit 4736586355

View file

@ -54,8 +54,9 @@ class NoteTest < ActiveSupport::TestCase
comment = create(:note_comment)
assert_nil comment.note.author
comment = create(:note_comment, :author => users(:normal_user))
assert_equal users(:normal_user), comment.note.author
user = create(:user)
comment = create(:note_comment, :author => user)
assert_equal user, comment.note.author
end
def test_author_ip