Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如:考虑登录功能。所有测试用例都需要它。我想从我的另一个测试脚本中调用登录测试脚本,比如制作 ab?我使用水豚和 rspec 进行自动化。
例如,一种可能性是在 login_helper 中编写一个辅助方法,然后从测试中调用该方法。
另一种可能性是为需要登录功能的测试类创建一个父类,然后将其放入 before(:each) 钩子中。