qrush / m

A Test::Unit runner that can run tests by line number.
MIT License
376 stars 57 forks source link

Multiple command line args #60

Closed triplepointfive closed 8 years ago

triplepointfive commented 8 years ago

Called this way

m test/models/user_test.rb test/models/post_test.rb

m runs tests only for the first file, would be nice if it could run tests in both files.

m version 1.5.0

zamith commented 8 years ago

That is something m does not support right now. Have you tried rake test test/models/user_test.rb test/models/post_test.rb? Does that work for you?

triplepointfive commented 8 years ago

Oh, rake test does the trick, thanks for advice

zamith commented 8 years ago

Great. That's something I might think of adding to m, so that you don't have to switch between one and the other, but for now I'll close the issue.

Thanks.