将参数传递给 Rails 单元测试

发布于 2024-08-05 06:36:44 字数 156 浏览 3 评论 0原文

我想知道是否有一种方法可以将参数传递给 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳男子 2024-08-12 06:36:44

在 Ruby(和 Python)中进行参数化测试的方法是动态创建测试方法:

[[12, 3, 4], [12, 2, 6], [12, 4, 3]].each do |n, d, q|
  test "#{q} is the quotient of #{n} and #{d}" do
    assert_equal q, n/d
  end
end

确保测试名称包含数据。

The way you do parameterized tests in Ruby (and Python) is to dynamically create the test methods:

[[12, 3, 4], [12, 2, 6], [12, 4, 3]].each do |n, d, q|
  test "#{q} is the quotient of #{n} and #{d}" do
    assert_equal q, n/d
  end
end

Make certain that the test names include the data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文