I have an existing rails 3 project that works just fine on ruby 1.9.2-p290. However upgrading to ruby 1.9.3-p0 causes rake test to spit out the following error:

/Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:167:in `block in non_options': file not found: test/unit/**/*_test.rb (ArgumentError)
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:146:in `map!'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:146:in `non_options'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:207:in `non_options'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:52:in `process_args'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/minitest/unit.rb:891:in `_run'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:21:in `run'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'
/Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:167:in `block in non_options': file not found: test/functional/**/*_test.rb (ArgumentError)
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:146:in `map!'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:146:in `non_options'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:207:in `non_options'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:52:in `process_args'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/minitest/unit.rb:891:in `_run'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/minitest/unit.rb:884:in `run'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:21:in `run'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:326:in `block (2 levels) in autorun'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:27:in `run_once'
from /Users/zmanji/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/test/unit.rb:325:in `block in autorun'

It seems to be a consequence of this rake issue. However when I create a simple rails project on ruby 1.9.3 so such error occurs. What can I do to get my rails project to run on ruby 1.9.3?

link|improve this question

74% accept rate
Which rails version are you using in your Gemfile? I have just tested a new app on rails 3.1.1 and ruby 1.9.3 p0 - the rake test works ok. – Evgeny Nov 1 '11 at 12:06
1  
I have rails 3.1.1 in my Gemfile. It should also be noted that if I change rake to the 0.9.3.beta.1 it works. However it is not desired to use a beta version of rake with the project. – Zameer Manji Nov 1 '11 at 13:47
Is it desired to work with Ruby x.x.x-p0 ? It is usually worse than gem beta. – phil pirozhkov Nov 6 '11 at 20:12
The speedup from working with ruby 1.9.3 vs 1.9.2 for a rails project is about 33% with my projects. If my tests run 33% faster it is worth it. – Zameer Manji Nov 7 '11 at 1:02
3  
Strongly disagree with p0/beta gem comparisons. Ruby release cycle is far more stringent than most gems. – Xavier Shay Jan 3 at 3:23
show 5 more comments
feedback

2 Answers

Which of the suggestions in the issue/comments have you tried?

  1. Use test.test_files = FileList['test/unit/**/test*.rb']
  2. Remove shoulda beta dependency.
  3. Use test/unit gem.
link|improve this answer
1  
Removing shoulda fixed that for me – Ben Wiseley Mar 21 at 0:29
1  
Removing shoulda worked (as did adding test-unit), but as I was using RSpec and still needed shoulda, I replaced gem 'shoulda' with gem 'shoulda-matchers' which seems to work just fine. Thoughtbot's documentation does say that only shoulda-matchers are needed for RSpec, and shoulda-context is used "If you're not testing a Rails project or don't want to use the matchers". – Leo Apr 9 at 11:09
feedback

Adding the test-unit gem worked for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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