我在不同的文件中有很多rspec规范。但他们都是近亲,所以我决定用同样的方式来描述他们问题是,输出html是按文件而不是按描述对场景进行分组像这样的:
RSPEC文件1:
describe "Module 1" do
it "should do something " do
...
end
文件2:
describe "Module 1" do
it "should do another thing " do
...
end
html结果如下:
Module 1 ---------
should do something
Module 1 ---------
should do another thing
理想的结果应该是:
Module 1---------
should do something
should do another thing
有可能吗?
最佳答案
可以!定制格式化程序完成了这个任务感谢大家的帮助!
关于ruby - 如何在HTML输出结果中对RSpec描述进行分组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14488976/