Re: [Rails] Re: "rake TEST=test/unit/whatever_test.rb" is executed 3 times.

2010-05-03 Thread Peter Hickman
Or you could try rake test:units TEST=test/unit/whatever_test.rb if it is a unit test for example -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To unsubscribe fro

[Rails] Re: "rake TEST=test/unit/whatever_test.rb" is executed 3 times.

2010-05-03 Thread Frederick Cheung
On May 3, 1:15 pm, Damaris Fuentes wrote: > Hi you all, > > Is this a normal behaviour? > The test is the default one when you create a model and I'm using Ruby > 1.8.6. and Rails 2.1.2. rake version is 0.8.6 If you want to run just one test I'd do ruby -Itest test/unit/ foo_test.rb I think th