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

missing_tables_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: 7c80923e8607bb40d4e0d5e31fbbf3e9f033b62b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::SchemaValidation::Validators::MissingTables, feature_category: :database do
  missing_tables = %w[ci_project_mirrors missing_table operations_user_lists test_table]

  include_examples 'table validators', described_class, missing_tables
end