我希望能够运行单个规范文件的测试—例如,对于我正在编辑的一个文件。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

当前回答

运行你所有的rspec文件:rspec

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

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

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

rspec 'path_to/spec.rb:7'

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

其他回答

从帮助(spec -h):

-l, --line LINE_NUMBER           Execute example group or example at given line.
                                 (does not work for dynamically generated examples)

示例:spec spec/runner_spec。Rb -l 162

您还可以使用*e*示例测试用例的实际文本-e !

所以对于:

it "shows the plane arrival time"

你可以使用

rspec path/to/spec/file.rb -e 'shows the plane arrival time'
./scripts/spec path/to/spec/file.rb -e 'shows the plane arrival time'

这里不需要耙子。

Ruby 1.9.2和Rails 3有一个简单的方法来运行一个规范文件:

  ruby -I spec spec/models/user_spec.rb

解释:

Ruby命令往往比rake命令快 -I spec的意思是“在查找文件时包含'spec'目录” 规范/模型/ user_spec。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

原始调用:

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

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