我在不同的文件中有许多 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
是否可以?