Calling Feature.enabled? with wrong arguments should raise error in tests
<!--IssueSummary start-->
<details>
<summary>
Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards.
</summary>
- [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=31512)
</details>
<!--IssueSummary end-->
Follow-up to https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14429#note_191701808
Calling `Feature.enabled?` with wrong arguments (eg. `default_value` instead of `default_enabled`) raises an error
```ruby
> ::Feature.enabled?(:foo, project, default_value: true)
ArgumentError: unknown keyword: default_value
```
However, no error is raised in tests because `spec_helper` has `allow(Feature).to receive(:enabled?) { true }`.
issue