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/.
--
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+unsubscribe@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/7f1eeb83a61a2800cad9a1c43932c24a%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment