Мой блок RSpe c configure выглядит примерно так в моем spec_helper
RSpec.configure do |config|
config.include Capybara::DSL
config.include Helpers
config.include Helpers::CustomFinders
config.include Helpers::SignUp
...
end
Мой вспомогательный файл выглядит примерно так:
module Helpers
module CustomFinders
# method defs here
end
module SignUp
# method defs here
end
# Other modules here
# Some other method defs here also
...
end
Есть ли способ просто добавить ВСЕ модули в блок RSpe c configure в одну строку? В моем вспомогательном файле много модулей, и мне придется добавлять новые в мой spec_helper.