pages.rb 261 Bytes
# Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved.
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :page do
    title "MyString"
    text "MyString"
    video_id 1
  end
end