Welcome to mirror list, hosted at ThFree Co, Russian Federation.

oauth_access_tokens.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccf02d0719b1f4ae43d34f420c26901d6f4647cf (plain)
1
2
3
4
5
6
7
FactoryGirl.define do
  factory :oauth_access_token do
    resource_owner
    application
    token '123456'
  end
end