summaryrefslogtreecommitdiff
path: root/spec/models/instance_metadata_spec.rb
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