I am writing an utility that creates Requirements in Quality Center using OTA (Open Test Architecture) api and ruby.
OTA is written in VB and is exposed as COM functions.
To create a blank requirement, we have to use a method called AddItem. The OTA document describes the addItem as follow:
Visual Basic
Public Function AddItem( _
ByVal ItemData As Variant _
) As Object
ItemData: Null. Creating a virtual Req object with Null ensures that you cannot then Post until all required fields are initialized.
My problem is, I want to pass VB's Null value from ruby to the addItem function. I have tried to pass nil but it is of no use.
Can anyone please help me to solve the above problem.
Thanks in advance. Prasant Sutaria