[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Unit Testing Framework

Sagar Veerla

11/20/2007 4:36:00 PM

Hi All,

Can anyone let me know whether there exists any tool in Ruby that
resembles NUnit/JUnit of .Net/.Java.

Thanks in advance,
Sagar
--
Posted via http://www.ruby-....

3 Answers

Jano Svitok

11/20/2007 4:40:00 PM

0

On Nov 20, 2007 5:35 PM, Sagar Veerla <sagar_veerla@yahoo.com> wrote:
> Hi All,
>
> Can anyone let me know whether there exists any tool in Ruby that
> resembles NUnit/JUnit of .Net/.Java.
>
> Thanks in advance,
> Sagar

test/unit

Sagar Veerla

11/20/2007 4:43:00 PM

0

Jano Svitok wrote:
> On Nov 20, 2007 5:35 PM, Sagar Veerla <sagar_veerla@yahoo.com> wrote:
>> Hi All,
>>
>> Can anyone let me know whether there exists any tool in Ruby that
>> resembles NUnit/JUnit of .Net/.Java.
>>
>> Thanks in advance,
>> Sagar
>
> test/unit


Hi Jano Svitok,

Can you please give me further information regarding test/unit and other
thing is test/unit is GUI tool like Nunit.

Thanks much,

Sagar
--
Posted via http://www.ruby-....

Jano Svitok

11/20/2007 5:06:00 PM

0

On Nov 20, 2007 5:43 PM, Sagar Veerla <sagar_veerla@yahoo.com> wrote:
>
> Jano Svitok wrote:
> > On Nov 20, 2007 5:35 PM, Sagar Veerla <sagar_veerla@yahoo.com> wrote:
> >> Hi All,
> >>
> >> Can anyone let me know whether there exists any tool in Ruby that
> >> resembles NUnit/JUnit of .Net/.Java.
> >>
> >> Thanks in advance,
> >> Sagar
> >
> > test/unit
>
>
> Hi Jano Svitok,
>
> Can you please give me further information regarding test/unit and other
> thing is test/unit is GUI tool like Nunit.
>
> Thanks much,

You'll find everything you need at http://www.google.com/search?q=ruby...

I suggest you start with
http://ruby-doc.org/stdlib/libdoc/test/unit/rdoc/... and then
you'll find a lot of articles.
Even the archive here should contain a lot of stuff.

If there's anything unclear, just post a question here, with bonus
points for your code (it makes easier to reproduce the problem).

Jano