scinote-web/spec/factories/tokens.rb

10 lines
149 B
Ruby
Raw Normal View History

2019-05-09 23:10:02 +08:00
# frozen_string_literal: true
FactoryBot.define do
factory :token do
token { Faker::Lorem.characters(100) }
ttl { 60 }
user
end
end