aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/api_keys.rb
blob: bd31edecc5d6ac31c0227c4e6dc1167590f6e077 (plain)
1
2
3
4
5
6
FactoryGirl.define do
  factory :api_key, class: Api::V1::ApiKey do
    token { "#{referential.id}-#{SecureRandom.hex}" }
    referential
  end
end