2

私はMichaelHartlのRubyonRailsチュートリアルを進めており、第3章の演習を行っています。誰かがこのテストが失敗する理由を説明できますか?

私は失敗している

rspec ./spec/requests/static_pages_spec.rb:39 # 
Static pages About page should have the title 'About Us'

コントローラ

  class StaticPagesController < ApplicationController
  def home
  end

  def help
  end

  def about
  end

  def Contact
  end
end

About.html.erb

<!DOCTYPE html>
<html>
<head>
<title>Ruby on Rails Tutorial Sample App | About Us</title>
</head>
<body>
<h1>About Us</h1>

Spec.rb

describe "About page" do

  it "should have the h1 'About Us'" do
    visit '/static_pages/about'
  page.should have_selector('h1', :text => 'About Us')
end
it "should have the title 'About Us'" do
  visit '/static_pages/about'
  page.should have_selector('title',
                :text => "Ruby on Rails Tutorial Sample App | About Us")
  end
end 

Routes.rb

SampleApp::Application.routes.draw do
  get "static_pages/home"

  get "static_pages/help"

  get "static_pages/about"

  get "static_pages/Contact"
end
4

2 に答える 2

0

試す

page.should have_xpath("//title", :text => "About Us")
于 2012-09-30T04:24:38.890 に答える
0

MHartl のチュートリアルに従っていて、gem 'Capybara' を使用している場合、':text => ...' を ':content => ...' に変更すると、テストに合格することが確認できます。@Kuo Jimmyに感謝します。

于 2013-04-09T18:53:31.630 に答える