scinote-web/spec/factories/tokens.rb
2019-06-10 12:24:04 +02:00

10 lines
149 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :token do
token { Faker::Lorem.characters(100) }
ttl { 60 }
user
end
end