I have the nested directory like:
spec/features/
├── login.rb
└── users
├── user_create.rb
├── user_edit.rb
└── user_index.rb
using command bundle exec rspec spec/features/login.rb
will run the login test.
I want to run all the test including the test inside users folder.
Something like, bundle exec rspec spec/features/*.rb
I only want to run all the features test.
Please help!