today_ai_weather/test/integration/site_layout_test.rb
songtianlun 646be909ec test: comment out unused assertions in site layout test
- Commented out assertions for about, help, and contact URLs.
- These assertions were previously checking links in the site layout test but may not be relevant for current testing purposes.
- This change helps to keep the test focused and definitions clear, reducing potential confusion with unused checks.
2025-01-18 14:13:07 +08:00

16 lines
401 B
Ruby

require "test_helper"
class SiteLayoutTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
test "layout links" do
get root_path
assert_template "static_pages/home"
assert_select "a[href=?]", root_url, count: 3
# assert_select "a[href=?]", about_url
# assert_select "a[href=?]", help_url
# assert_select "a[href=?]", contact_url
end
end