次のような Rspec のテストがあります。
describe "description" do
before :each do
do_before()
end
it "something_1" do
...
end
it "something_2" do
...
end
end
を使用して、現在のテストの名前 (" something_1 ") を取得できることを知っています。
example.description
エリア内のすべての説明の配列を取得する方法はありますbefore :each
か?