Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. FactoryGirl.define do
  2. factory :piece do
  3. color 'white'
  4. active true
  5. x_position 1
  6. y_position 1
  7. type ''
  8. association :game
  9. end
  10.  
  11. factory :king do
  12. color 'white'
  13. active true
  14. x_position 5
  15. y_position 1
  16. type 'King'
  17. association :game
  18. end
  19.  
  20. factory :queen do
  21. color 'white'
  22. active true
  23. x_position 1
  24. y_position 1
  25. type 'Queen'
  26. association :game
  27. end
  28.  
  29. factory :rook do
  30. color 'white'
  31. active true
  32. x_position 1
  33. y_position 3
  34. type 'Rook'
  35. association :game
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement