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

oauth_applications.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d116a57383077095ae3af27dc3fd96c52fa30c1e (plain)
1
2
3
4
5
6
7
8
9
FactoryGirl.define do
  factory :oauth_application, class: 'Doorkeeper::Application', aliases: [:application] do
    name { FFaker::Name.name }
    uid { FFaker::Name.name }
    redirect_uri { FFaker::Internet.uri('http') }
    owner
    owner_type 'User'
  end
end