How can I get Rspec to run all tests nested under a folder?

后端 未结 2 1903
北荒
北荒 2021-02-05 01:40

I like to run my Rspec tests with Spork running in a separate tab. I usually run my tests using rspec spec, by which I intend to say \"search recursively and run ev

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-05 01:48

    Rspec should already look recursively through the directory you named and find all tests. Note however, that it's looking for files ending in _spec.rb. Maybe some of your files are not named correctly?

    If you need to be more specific about which files it should find, you can also use the --pattern option. For example: rspec --pattern spec/requests/*_spec.rb. (Option --pattern is equal to -P. Taken from rspec --help)

提交回复
热议问题