13 lines
296 B
Ruby
13 lines
296 B
Ruby
# 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
|