projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a6956e
)
Use user factory for note model test.
author
Andy Allan
<git@gravitystorm.co.uk>
Thu, 9 Mar 2017 11:06:07 +0000
(11:06 +0000)
committer
Andy Allan
<git@gravitystorm.co.uk>
Thu, 9 Mar 2017 11:06:07 +0000
(11:06 +0000)
test/models/note_test.rb
patch
|
blob
|
history
diff --git
a/test/models/note_test.rb
b/test/models/note_test.rb
index d4bd36e74a49fede0dc6600bcaceeaa4e118cdd7..e3831b2c022fd4d8b9f70163cda58cca0ec44df5 100644
(file)
--- a/
test/models/note_test.rb
+++ b/
test/models/note_test.rb
@@
-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