[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

flexmock not working in cygwin

Feng Tien

5/7/2008 5:50:00 AM

I get an no such file to load error when i try to run my unit test with:

require 'flexmock/test_unit'

I've tried

require '..flexmock/test_unit'


What do I need to do to fix this?

the flexmock gem installed fine.
--
Posted via http://www.ruby-....

2 Answers

Gordon Thiesfeld

5/7/2008 10:01:00 PM

0

On Wed, May 7, 2008 at 12:50 AM, Feng Tien <pood.forums@gmail.com> wrote:
> I get an no such file to load error when i try to run my unit test with:
>
> require 'flexmock/test_unit'
>
> I've tried
>
> require '..flexmock/test_unit'
>
>
> What do I need to do to fix this?
>
> the flexmock gem installed fine.

Did you

require 'rubygems'

?

Feng Tien

5/7/2008 10:20:00 PM

0

Gordon Thiesfeld wrote:
> On Wed, May 7, 2008 at 12:50 AM, Feng Tien <pood.forums@gmail.com>
> wrote:
>>
>> the flexmock gem installed fine.
>
> Did you
>
> require 'rubygems'
>
> ?

lol, totally forgot! thanks!

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