我在rspec中出错了。这是输出:
rspec ./spec/requests/layout_links_spec.rb:5 # LayoutLinks should have a Home page at '/'
我正在使用Ubuntu,Ruby 1.9.2,Rails 3.0.9和RSpec 2.6.1。
在routes.rb中我试过
root :to => 'pages#home'
和
match '/', :to => 'pages#home'
它不起作用。任何想法?
这是我的layout_links_spec.rb
require 'spec_helper'
describe "LayoutLinks" do
it "should have a Home page at '/'" do
get '/'
response.should have_selector('title', :content => "Home")
end
end