Skip to content

Instantly share code, notes, and snippets.

@LNA
Created March 26, 2014 15:54
Show Gist options
  • Save LNA/9786580 to your computer and use it in GitHub Desktop.
Save LNA/9786580 to your computer and use it in GitHub Desktop.
Listing 5.26 will make all of your specs fail.
SampleApp::Application.routes.draw do
root 'static_pages#home'
match '/help', to: 'static_pages#help', via: 'get'
match '/about', to: 'static_pages#about', via: 'get'
match '/contact', to: 'static_pages#contact', via: 'get'
end
#should be
SampleApp::Application.routes.draw do
root 'static_pages#home'
match 'static_pages/help', to: 'static_pages#help', via: 'get'
match 'static_pages/about', to: 'static_pages#about', via: 'get'
match 'static_pages/contact', to: 'static_pages#contact', via: 'get'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment