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: e3a9167620b291ed3a4f1b70d548307a566eb34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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,
      kas: kind_of(::InstanceMetadata::Kas)
    )
  end
end