13 lines
251 B
Ruby
13 lines
251 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
|
||
|
)
|
||
|
end
|
||
|
end
|