vote up 0 vote down star

As title.

ruby test/functionals/whatevertest.rb doesn't work, that requires me to replace all require 'test_helper' to require File.dirname(__FILE__) + '/../test_helper'. For some reason most of those test templates have such issue, so I rather to see if there is a hack I could get around it.

flag

25% accept rate

2 Answers

vote up 1 vote down check

On Linux? why not try (cd test && ruby functionals/whatevertest.rb). Note, the parentheses are important as otherwise your current directory will change to the subdirectory. What it does is fork another shell, change to the subdirectory in it, and run the test.

link|flag
thats a good one. I changed a bit to (cd test && ruby functional/whatsoevertest.rb) so it works properly with the relative directory structure. Makes perfect sense :) – goodwill Nov 8 '08 at 7:58
Updated with your fix. – tvanfosson Nov 8 '08 at 8:02
vote up 0 vote down

Try this:

ruby -Ilib:test test/functionals/whatevertest.rb

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.