Hi, Anyone know how to run rspec on 1.2.3? It fails out of the box.... I newly downloaded rspec, rspec_on_rails and ran the command ruby script/generate rspec ==>>> Does this script work right? from the instructions http://rspec.info/documentation/rails/install.html I then created the directories in spec: controllers, fixtures, helpers, models, views I then created the file spec/models/user_spec.rb as a spec for my model User. Anyhow, my problem: I run rake spec and get /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'': no such file to load -- spec/rails (MissingSourceFile) The file /spec/spec_helper.rb contains the line require ''spec/rails'' I noticed that the load path does not include vendor/plugins/rspec_on_rails/lib ....?? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20080520/5286bf76/attachment.html>
On May 20, 2008, at 11:26 PM, Larry Kluger wrote:> Hi, > > Anyone know how to run rspec on 1.2.3? > > It fails out of the box.... > > I newly downloaded rspec, rspec_on_rails and ran the command > ruby script/generate rspec ==>>> Does this script work right? > from the instructions http://rspec.info/documentation/rails/install.html > > I then created the directories in spec: > controllers, fixtures, helpers, models, views > > I then created the file spec/models/user_spec.rb as a spec for my > model User.Did you run ''script/generate rspec''?> Anyhow, my problem: > I run rake spec > and get > > /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in > `gem_original_require'': no such file to load -- spec/rails > (MissingSourceFile) > > The file /spec/spec_helper.rb contains the line > require ''spec/rails'' > > I noticed that the load path does not include vendor/plugins/ > rspec_on_rails/libThat''s weird. The load path should include the lib directory of every plugin. What version of rails are you running? David -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20080521/d162d9d0/attachment-0001.html>
Hi David, Thank you for your response. Got it working: The rspec_on_rails was not being loaded because it appeared in the line config.plugins -= %W( query_trace ... } # plugins that should NOT be loaded in the file config/environments/test.rb Fix: check that both rspec and rspec_on_rails plugins are being loaded in test.rb environment file. Some details: A confusing bit is that it appears that the rspec load path is being added by the rspec runner. So even though the rspec plugin was ALSO NOT being initialized by RoR, the problem was occurring with rspec_on_rails. Regards, Larry ----- Original Message ---- From: David Chelimsky <dchelimsky at gmail.com> To: rspec-users <rspec-users at rubyforge.org> Sent: Wednesday, May 21, 2008 9:38:02 AM Subject: Re: [rspec-users] running rspec on 1.2.3 ?? On May 20, 2008, at 11:26 PM, Larry Kluger wrote: Hi, Anyone know how to run rspec on 1.2.3? It fails out of the box.... I newly downloaded rspec, rspec_on_rails and ran the command ruby script/generate rspec ==>>> Does this script work right? from the instructions http://rspec.info/documentation/rails/install.html I then created the directories in spec: controllers, fixtures, helpers, models, views I then created the file spec/models/user_spec.rb as a spec for my model User. Did you run ''script/generate rspec''?[yes, see my statement to that effect above.] Anyhow, my problem: I run rake spec and get /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'': no such file to load -- spec/rails (MissingSourceFile) The file /spec/spec_helper.rb contains the line require ''spec/rails'' I noticed that the load path does not include vendor/plugins/rspec_on_rails/lib That''s weird. The load path should include the lib directory of every plugin. What version of rails are you running? [v 1.2.3, as stated above :-) ] David -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20080521/31d56161/attachment.html>