В тесте rspec можно указать тип теста, например
rspec
it 'should behave', type: :system do ... end
Каковы допустимые значения: type, если это так, где это задокументировано.
Из смак документации
- Model specs: type: `:model` - Controller specs: type: `:controller` - Request specs: type: `:request` - Feature specs: type: `:feature` - View specs: type: `:view` - Helper specs: type: `:helper` - Mailer specs: type: `:mailer` - Routing specs: type: `:routing` - Job specs: type: `:job` - System specs: type: `:system`
Также, как прокомментировал arieljuod, вы можете иметь пользовательских типов спецификаций