使用 Ruby Rally Rest API 将测试用例添加到测试集

发布于 2025-01-04 07:24:08 字数 201 浏览 1 评论 0原文

我正在尝试将测试用例添加到 Rally 的测试集中。

我有测试集对象和测试用例对象。 我可以用这个测试用例对象替换整个测试集列表,它工作得很好。 但我确实需要将此测试用例添加到列表中。

知道我如何以不同的方式做到这一点吗?

testset_object.update(:test_cases => test_case_object)

I'm trying to add test cases to a test set in Rally.

I have the test set object and the test case object.
I can REPLACE the entire test set list with THIS test case object and it works fine.
But I really need to ADD this test case to the list.

Any idea how I do this differently?

testset_object.update(:test_cases => test_case_object)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风透绣罗衣 2025-01-11 07:24:08

:test_cases 字段应该只是一个数组,所以这应该有效:
测试 = [test_case_object1, test_case_object2]
testset_object.update(:test_cases => 测试)
希望有帮助

the :test_cases field should just be an array, so this should work:
tests = [test_case_object1, test_case_object2]
testset_object.update(:test_cases => tests)
Hope that helps

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