blob: 61afb2171f05e3546eed017917a362d4893e7be9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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
LicenseHelpers.prepend_mod_with('LicenseHelpers')
|