Test messages showing up on rake tasks

Hello guys,

Recently an application started to print these nasty messaes everytime I try to run a rake task:

Hello guys,

Recently an application started to print these nasty messaes everytime I try to run a rake task:

Hello guys,

Recently an application started to print these nasty messaes everytime I try to run a rake task:

Some thing is requiring test/unit

Fred

Is there any way to discover who's doing it? Or any way to disable it?

Well, solved it :slight_smile:

Here's the deal for future searches, I've added a require method to my environment.rb file (before rails boot require):

def require( file )   if file == 'test/unit'     raise "do not require this shit"   else     super   end end

And just found out where it was being required :slight_smile:

Thanks!