如何在站点棱镜中包含黄瓜的世界概念?这样我就可以在 World 中包含 test_site 类,然后无需每次在 step 函数中实例化 test_site 类。可能吗?
我正在将 Ruby 与 Capybara 和站点棱镜一起使用;不是铁轨!!!
我的 test_site 课程是:
class TestSite
def home
TestHomePage.new
end
end
我不能这样吗?
module Some
class TestSite
def home
TestHomePage.new
end
end
end
World(Some)