我希望能够运行单个规范文件的测试—例如,对于我正在编辑的一个文件。Rake spec执行所有的规范。我的项目不是Rails项目,所以rake spec:doc不起作用。

不知道这是否重要,但这是我的目录结构。

./Rakefile
./lib
./lib/cushion.rb
./lib/cushion
./lib/cushion/doc.rb
./lib/cushion/db.rb
./spec
./spec/spec.opts
./spec/spec_helper.rb
./spec/db_spec.rb

当前回答

原始调用:

rake spec SPEC=spec/controllers/sessions_controller_spec.rb \
          SPEC_OPTS="-e \"should log in with cookie\""

现在弄清楚如何将其嵌入到编辑器中。

其他回答

我有麻烦得到这些例子中的任何一个工作,也许是因为帖子是旧的,命令已经改变了?

经过一番调查,我发现这是可行的:

rspec spec/models/user_spec.rb

这将只运行单个文件,并在终端中提供有用的输出。

运行你所有的rspec文件:rspec

注意:你必须在项目的根目录下

运行一个rspec文件:rspec 'path_to/spec.rb'

注意:替换'path_to/spec。跟着你的路走。可选引号。

rspec 'path_to/spec.rb:7'

注意::7是测试开始的行号

或者你可以跳过rake,使用'rspec'命令:

bundle exec rspec path/to/spec/file.rb

在你的情况下,我认为只要你的。/spec/db_spec。Rb文件包括适当的帮助,它应该工作良好。

如果你正在使用rspec的旧版本,它是:

bundle exec spec path/to/spec/file.rb

或者,看看autotest。

在命令窗口中运行autotest意味着在保存规范文件时将执行它。而且,只要您指定的文件运行,它就会运行。

例如,如果您有一个名为person_spec的模型规范文件。Rb,和一个模型文件,它被指定为person。Rb,那么当您从编辑器中保存这些文件时,规范文件将被执行。

http://github.com/grosser/single_test让你做的事情…

rake spec:user          #run spec/model/user_spec.rb (searches for user*_spec.rb)
rake test:users_c       #run test/functional/users_controller_test.rb
rake spec:user:token    #run the first spec in user_spec.rb that matches /token/
rake test:user:token    #run all tests in user_test.rb that match /token/
rake test:last
rake spec:last