site_layout_test.rb 295 B

1234567891011
  1. require 'test_helper'
  2. class SiteLayoutTest < ActionDispatch::IntegrationTest
  3. test "layout links" do
  4. get root_path
  5. assert_template 'static_pages/home'
  6. assert_select "a[href=?]", root_path
  7. assert_select "a[href=?]", home_path
  8. assert_select "a[href=?]", about_path
  9. end
  10. end