I have 2 models, Product and Category.
Product has category_id attribute. So, Product belongs to Category, and Category has many Products.
<!-- language: rb -->
class Product < ActiveRecord::Base
belongs_to :category
validates :category, presence: true
end
class Category < ActiveRecord::Base
has_many :products
end
How can I define factories (FactoryGirl rails) for both models? Especially interesting how to do this for Product model.