さまざまなファイルにいくつかの 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
出来ますか?