require 'spec_helper'
describe PagesController do
render_views
describe "GET 'home'" do
it "should be successful" do
get 'home'
response.should be_success
end
end
describe "GET 'about'" do
it "should be successful" do
get 'about'
response.should be_success
end
end
describe "GET 'contact'" do
it "should be successful" do
response.should be_success
end
end
end
上記は、Ruby on Rails でのテストの基本を学びながら書いた非常に単純なテストです。問題は、app/controllers/pages_controller.rb にこれがないため、「接触」テストに失敗するはずです。 .
以下を返します
Finished in 0.04558 seconds
3 examples, 0 failures
したがって、テストは正常にカウントされますが、いずれかが間違っていても失敗しません。