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

missing_triggers_spec.rb « validators « schema_validation « database « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87bc3ded8082c571f23ca0e2dcab01ccaef83eb3 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::SchemaValidation::Validators::MissingTriggers, feature_category: :database do
  missing_triggers = %w[missing_trigger_1 projects_loose_fk_trigger]

  include_examples 'trigger validators', described_class, missing_triggers
end