使用 Ruby Rally Rest API 将测试用例添加到测试集
我正在尝试将测试用例添加到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
: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