aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/widget_votes.rb
blob: 7ceb4f7e96cd8f411b4e2d9367479c37927e75e6 (plain)
1
2
3
4
5
6
7
8
# -*- encoding : utf-8 -*-
require 'securerandom'
FactoryGirl.define do
  factory :widget_vote do
    info_request
    cookie { SecureRandom.hex(10) }
  end
end