On Tue, Jun 24, 2008 at 2:35 AM, Lance Carlson <[EMAIL PROTECTED]> wrote:
>
> Hi everyone,
>
> This may not be an issue, but I'm just checking. When I generate a
> scaffold in rails 2.1, all of the tests that get generated have a
> require 'test_helper' at the top. When you try to run a test
> individually through command line, you get an error:
>
> $ ruby test/functional/foos_controller_test.rb
> test/functional/foos_controller_test.rb:1:in `require': no such file
> to load -- ../test_helper (LoadError)
>
> Obviously changing this to require File.dirname(__FILE__) +
> "../test_helper" fixes the problem, however is there a rake task that
> lets you run tasks individually or is this just a bug?
>
> Sorry if I'm being nit-picky, but I like generators and think they
> should be kept up to date. :)
>
> TIA,
> -Lance
>

This sounds like a bug - many users will try to run the test directly
either within textmate or their ide, or just by doing 'ruby
foo_test.rb'.  Using the relative path is the right way to go...

- Rob

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to