Spec helper for license mocks
Description
For the namespace license checks we'll need some spec helper method to perform some mocks.
An example from a discussion in !2109 (merged):
allow(License).to receive(:feature_available?).and_call_original
allow(License).to receive(:feature_available?).with(:service_desk) { true }
Some other use cases might come up...
Proposal
Create LicenseHelper
that contains a set of helpers to enable/disable licensed features