gitlab-org--gitlab-foss/spec/support/helpers/license_helper.rb
Alexandru Croitor 3f16b445b7 Add no-op license helper to CE
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
2019-03-28 15:18:50 +02:00

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