我正在使用Rspec与警卫和spork一段时间,昨天我注意到我没有解释了。现在,当我输入rspec
(为了运行每个测试)时,我只能看到.....................................FDone.
之类的内容,但我没有过去常用的人工翻译。更糟糕的是,Rspec从未进行过所有测试,甚至没有一半......
你知道什么会导致这种烦人的行为吗?
答案 0 :(得分:1)
尝试设置--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)
更多详情documented here。