class QTest::Module
Attributes
id[RW]
module[RW]
project[RW]
Public Instance Methods
child_module(opts = {})
click to toggle source
child_modules(opts = {})
click to toggle source
create_test_case(opts = {})
click to toggle source
Create a Test Case under the Module
.
@param opts [Hash] @option name [String] @option description [String] @option properties [Array] @option test_steps [Array] @return [QTest::TestCase]
# File lib/qtest/module.rb, line 46 def create_test_case(opts = {}) create(QTest::TestCase, project: @project.id, module: @id, attributes: opts) end