require "test_helper"
class NoteTest < ActiveSupport::TestCase
- fixtures :users
-
def test_status_valid
- ok = %w(open closed hidden)
- bad = %w(expropriated fubared)
+ ok = %w[open closed hidden]
+ bad = %w[expropriated fubared]
ok.each do |status|
note = create(:note)
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