我将 Rspec 与 guard 和 spork 一起使用了一段时间,昨天我注意到我不再有解释了。现在,当我输入rspec
(为了运行每个测试)时,我只能看到类似.....................................FDone.
但我没有过去的人工翻译。更糟糕的是,Rspec 并没有运行所有的测试,甚至没有一半......
你知道什么会导致这种恼人的行为吗?
我将 Rspec 与 guard 和 spork 一起使用了一段时间,昨天我注意到我不再有解释了。现在,当我输入rspec
(为了运行每个测试)时,我只能看到类似.....................................FDone.
但我没有过去的人工翻译。更糟糕的是,Rspec 并没有运行所有的测试,甚至没有一半......
你知道什么会导致这种恼人的行为吗?
尝试设置--format
选项
rspec example_spec.rb --format documentation
输出应该看起来像
something
does something that passes
does something that fails (FAILED - 1)
does something that is pending (PENDING: Not Yet Implemented)
此处记录了更多详细信息。