describe
たとえば、次のように再定義できる方法はありますか
new_describe MyModule::MyClass do
it "does this" do
end
it "does that" do
end
end
それ以外の
describe "something" do
def app
MyModule::MyClass
end
it "does this" do
end
it "does that" do
end
end
?