Cross Reference: access_token.rb
xref
: /
ontohub
/
test
/
factories
/
access_token.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
access_token.rb revision 9dd500e3acdc343dbefcaf88b7663db25be0ef46
FactoryGirl.define
do
factory
:
access_token
do
token
{
SecureRandom.hex
(
AccessToken
::
LENGTH
)
}
expiration
{
1.hours.from
_now
}
association
:
repository
end
end