Ruby on Rails Tutorial Chapter 5.3

CODE site_layout_test.rb

require 'test_helper'

class SiteLayoutTest < ActionDispatch::IntegrationTest

  test "layout links" do     get root_path     assert_template 'static_pages/home'     assert_select "a[href=?]", root_path, count: 2     assert_select "a[href=?]", help_path     assert_select "a[href=?]", about_path     assert_select "a[href=?]", contact_path   end end

ERROR

This is what I see when I try to run the test :

FAIL["test_layout_links", SiteLayoutTest, 2015-05-19 22:21:27 +0530] test_layout_links#SiteLayoutTest (1432054287.74s)         Expected exactly 2 elements matching "a[href="/"]", found 0..         Expected: 2           Actual: 0         test/integration/site_layout_test.rb:8:in `block in <class:SiteLayoutTest>'

  6/6: [===================================] 100% Time: 00:00:04, Time: 00:00:04

Finished in 4.45208s 6 tests, 11 assertions, 1 failures, 0 errors, 0 skips

What could be be the error ?

Do you see the two links to "/" when you go to the page in a browser?

Colin

inside app/views/layouts please check these two files

_header.html.erb _footer.html.erb

add following code to both files

<li><%= link_to "Home", root_path %></li>

Shijie Xin wrote in post #1174447:

inside app/views/layouts please check these two files

_header.html.erb _footer.html.erb

add following code to both files

<li><%= link_to "Home", root_path %></li>

Thanks its working

Shijie Xin wrote in post #1174447:

inside app/views/layouts please check these two files

_header.html.erb _footer.html.erb

add following code to both files

<li><%= link_to "Home", root_path %></li>

thanks, it worked for me too