require "test_helper"
class NoteTest < ActiveSupport::TestCase
- fixtures :users
-
def test_status_valid
ok = %w(open closed hidden)
bad = %w(expropriated fubared)
comment = create(:note_comment)
assert_nil comment.note.author
- comment = create(:note_comment, :author_id => users(:normal_user).id)
- 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