3f16b445b7
Add no-op license helper to CE to make it compatible with EE codebase. Helper will be overwritten in EE to allow for CE specs to be run under EE codebase. https://gitlab.com/gitlab-org/gitlab-ee/issues/6539
8 lines
207 B
Ruby
8 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Placeholder module for EE implementation needed for CE specs to be run in EE codebase
|
|
module LicenseHelpers
|
|
def stub_licensed_features(features)
|
|
# do nothing
|
|
end
|
|
end
|