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 ?
--
Posted via
http://www.ruby-forum.com/.