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

tagging_spec.rb « acts_as_taggable_on « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4520a0aaf704fa456566942c6cbe127c4ca7d579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ActsAsTaggableOn::Tagging do
  it 'has the same connection as Ci::ApplicationRecord' do
    query = 'select current_database()'

    expect(described_class.connection.execute(query).first).to eq(Ci::ApplicationRecord.connection.execute(query).first)
    expect(described_class.retrieve_connection.execute(query).first).to eq(Ci::ApplicationRecord.retrieve_connection.execute(query).first)
  end

  it 'has the same sticking as Ci::ApplicationRecord' do
    expect(described_class.sticking).to eq(Ci::ApplicationRecord.sticking)
  end
end