I just installed RadRails. I am using Rails 2.0.1. When I try to run any rails unit tests. I get the following:
c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require': no such file to load -- test_helper (LoadError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
from ./test\unit\album_test.rb:1
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
from C:/workspace/.metadata/.plugins/org.rubypeople.rdt.testunit/RemoteTestRunner.rb:294
The test runs fine with rake. Here is the code for the test:
require 'test_helper'
class ReviewDetailTest < ActiveSupport::TestCase
# Replace this with your real tests.
def test_truth
assert true
end
end
Any ideas? I have used Rad Rails in the past and never experienced this.

