Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm followind the Rails Tutorial but have a problem in section 3.2.1, just before figure 3.6. When running

$ bundle exec rspec spec/requests/static_pages_spec.rb

I get failure

Failures:
  1) StaticPages GET /static_pages works! (now write some real specs)
     Failure/Error: get static_pages_index_path
     NameError:
       undefined local variable or method `static_pages_index_path' for # <RSpec::Core::ExampleGroup::Nested_1::Nested_1:0x007fe7592b33b8>
     # ./spec/requests/static_pages_spec.rb:7:in `block (3 levels) in <top (required)>'    
Finished in 0.00454 seconds
1 example, 1 failure
Failed examples:
rspec ./spec/requests/static_pages_spec.rb:5 # StaticPages GET /static_pages works! (now write some real specs)

here are the files :

spec/requests/static_pages_spec.rb

require 'spec_helper'
describe "Static pages" do
  describe "Home page" do
    it "should have the content 'Sample App'" do
      visit '/static_pages/home'
      page.should have_content('Sample App')
    end
  end
end

app/controllers/static_pages_controller.rb

class StaticPagesController < ApplicationController
  def home
  end
  def help
  end
end

app/views/static_pages/home.html.erb

<h1>Sample App</h1>
<p>
  This is the home page for the
  <a href="http://railstutorial.org/">Ruby on Rails Tutorial</a>
  sample application.
</p>

config/routes.rb

SecondApp::Application.routes.draw do
  get "static_pages/home"
  get "static_pages/help"
end

Gemfile

source 'https://rubygems.org'
gem 'rails', '3.2.3'
group :development do
  gem 'sqlite3', '1.3.5'
  gem 'rspec-rails', '2.9.0'
  gem 'guard-rspec', '0.5.5'
end
group :assets do
  gem 'sass-rails',   '3.2.4'
  gem 'coffee-rails', '3.2.2'
  gem 'uglifier', '1.2.3'
end
gem 'jquery-rails', '2.0.0'
group :test do
  gem 'rspec-rails', '2.9.0'
  gem 'capybara', '1.1.2'
  gem 'growl', '1.0.3'
end
group :production do
  gem 'pg', '0.12.2'
end

Any idea about what I did wrong ?

share|improve this question
3  
Your error doesn't correspond to the code you posted. Files not saved? – Art Shayderov May 14 '12 at 11:23
1  
Try running rake routes. You must not have a static_pages_index_path. Maybe it's supposed to be static_pages_home_path? – MrDanA May 14 '12 at 20:11
1  
The code you've posted seems mixed up GET /static_pages works! (now write some real specs) does not seem correct in relation to what you've posted. – Tom May 19 '12 at 17:58
If you're having trouble figuring out what paths you have available to you and you always want to have them in front of you, skip ahead briefly in the book to chapter 6, specifically to the section on annotating your models. Here, once you've installed the annotate gem, you can run annotate -r to annotate your routes.rb with the information generated from a rake routes command. – Paul Fioravanti Jul 1 '12 at 15:03
2  
I got this error too...in my case, it is because I had missed the step 'replace the code in spec/requests/static_pages_spec.rb' with the following...'. Is it possible you missed that step, or perhaps didn't save the file after you edited it, so that rspec is actually attempting the default test (fetching static_pages/index)? – Iain Sep 22 '12 at 14:55

5 Answers

Have a closer look at your spec/requests/static_pages_spec.rb. Please make sure you've deleted get static_pages_index_path line.

share|improve this answer

Have you deleted the public/index.html? This could be causing the problem.

share|improve this answer

i was facing a similar problem. when you edit the static_pages_spec.rb looks like you typed this command (in listings 3.9) static_pages_spec.rb whereas you had to type spec/requests/static_pages_spec.rb

this will surely solve your problem.

share|improve this answer

You have to update your app/views/static_pages/help.html.erb page to contain 'Sample App' in the same way as you have done with home.html.erb.

share|improve this answer

I had the same problem and I figured it out in the following way. I am also a newbie (first Stack Overflow post... nervous), so I don't have the jargon down:

The reason I was getting this error is that I didn't create the staticpages controller described in Listing 3.4 of the tutorial (I think I deleted it messing around with the practice commands that follow Listing 3.4 teaching you how to ahem, delete things). The way to check if you don't have the staticpages controller is to go to:

sample_app/controllers/ and so I only had the application_controller.rb file there and no static_pages_controller.rb.

So you have to run the rails generate controller StaticPages home help --no-test-framework command and get that controller in there.

You can double-check your work by going to localhost:3000/static_pages/home and seeing if there is actually something there.

Then edit, per the tutorial, the home.html.erb files and check back to static_pages/home to see if it actually says "Sample App".

If static_pages/home actually says "Sample App" and the test is still a failure when you run it, then only God can help you. Or maybe someone else on Stack Overflow. Good luck.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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