Rails RSpec无效选项: - format

时间:2015-02-17 09:10:26

标签: ruby-on-rails rspec rspec-rails

$ rspec spec --format documentation
... test results
invalid option: --format
Test::Unit automatic runner.
Usage: ...

为什么rspec警告我这个选项?测试结果完全以这种格式“文档”打印,但有此警告和用法。

$ bundle show | grep rspec
  * rspec-core (3.2.0)
  * rspec-expectations (3.2.0)
  * rspec-mocks (3.2.0)
  * rspec-rails (3.2.0)
  * rspec-support (3.2.1)

$ bundle show | grep test-unit
  * test-unit (3.0.8)

此选项位于官方文档中。 https://relishapp.com/rspec/rspec-core/v/3-2/docs/command-line/format-option

那它有什么问题?

1 个答案:

答案 0 :(得分:0)

解决。 rspec与gem test-unit结合。

  

测试单元的测试运行器也试图解析CLI args而且是   抱怨不理解--format arg

https://github.com/rspec/rspec-rails/issues/1312