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

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

require 'fast_spec_helper'

RSpec.describe InstanceMetadata do
  it 'has the correct properties' do
    expect(subject).to have_attributes(
      version: Gitlab::VERSION,
      revision: Gitlab.revision
    )
  end
end