将参数传递给 Rails 单元测试
我想知道是否有一种方法可以将参数传递给 Rails 中的单个测试,类似于 NUnit 的 测试用例属性。谢谢
I was wondering if there is a way to pass arguments to individual tests in rails similar, or similar in idea, to NUnit's TestCase Attribute. Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Ruby(和 Python)中进行参数化测试的方法是动态创建测试方法:
确保测试名称包含数据。
The way you do parameterized tests in Ruby (and Python) is to dynamically create the test methods:
Make certain that the test names include the data.