FactoryGirl.define do
  # include ActionDispatch::TestProcess
  factory :faq, :class => 'Faq' do
  	sequence(:post_title) {|n| "Post#{n}"}
    post_date { Time.now - 10.days }
    post_date_gmt { (Time.now - 10.days).gmtime }
    post_modified { Time.now - 10.minutes }
    post_modified_gmt { (Time.now - 10.minutes).gmtime }
    post_status {"publish"}
  end
end