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

oauth_openid_requests.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82d89b5c8ca3e511636b12d33b32c3fb897c356a (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :oauth_openid_request, class: 'Doorkeeper::OpenidConnect::Request' do
    access_grant factory: :oauth_access_grant
    sequence(:nonce) { |n| n.to_s }
  end
end