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

missing_foreign_keys_spec.rb « validators « validation « schema « gitlab « lib « spec « gitlab-schema-validation « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6682c3f623d767adfd50da207f5825e9a9be1b55 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Schema::Validation::Validators::MissingForeignKeys, feature_category: :database do
  include_examples 'foreign key validators', described_class, %w[public.fk_rails_536b96bff1 public.missing_fk]
end