1# frozen_string_literal: true
2
3# Placeholder module for EE implementation needed for CE specs to be run in EE codebase
4module LicenseHelpers
5  def stub_licensed_features(features)
6    # do nothing
7  end
8end
9
10LicenseHelpers.prepend_mod_with('LicenseHelpers')
11