On 21 May 2015 at 00:56, Binu A. <li...@ruby-forum.com> wrote:
> 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

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

Colin

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rubyonrails-talk+unsubscr...@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLvAf382MWvWn0g%2B-zzbFgVivgdWq7t0fogc3sQMzOsFzw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to