Guest User

Untitled

a guest
Jan 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. Factory.define :user do |f|
  2. f.email "joey@ramones.com"
  3. f.password f.password_confirmation("rockaway")
  4. end
  5.  
  6. Factory.define :song do |f|
  7. f.title "I Wanna Be Sedated"
  8. f.artist "Ramones"
  9. f.credits "Recorded on February 12-19, 1976 at Plaza Sound, Radio City Music Hall in New York City for Sire Records. All Songs by The Ramones."
  10. f.artwork "name-of-the-file.jpg"
  11. f.user { Factory :user }
  12. end
  13.  
  14. require "test_helper"
  15.  
  16. describe Song do
  17. it "has a valid factory" do
  18. Factory.create :song
  19. end
  20. end
  21.  
  22. Factory.define :user do |f|
  23. f.email "joey@ramones.com"
  24. f.password f.password_confirmation("rockaway")
  25.  
  26. Factory.define :song do |f|
  27. f.title "I Wanna Be Sedated"
  28. f.artist "Ramones"
  29. f.album "Road to Ruin"
  30. f.date "1978"
  31. f.credits "Recorded on February 12-19, 1976 at Plaza Sound, Radio City Music Hall in New York City for Sire Records. All Songs by The Ramones."
  32. f.artwork "name-of-the-file.jpg"
  33. f.user_id "1"
  34. end
  35. end
Add Comment
Please, Sign In to add comment