mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:45:28 +00:00
13 lines
325 B
Ruby
13 lines
325 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ReadmeHelper, feature_category: :source_code_management do
|
|
let(:organization) { build_stubbed(:organization) }
|
|
|
|
it 'returns a hash' do
|
|
Current.organization = organization
|
|
expect(helper.vue_readme_header_additional_data).to be_a(Hash)
|
|
end
|
|
end
|