2024-12-31 00:37:02 +08:00
|
|
|
require "test_helper"
|
|
|
|
|
|
|
|
class SiteLayoutTest < ActionDispatch::IntegrationTest
|
|
|
|
# test "the truth" do
|
|
|
|
# assert true
|
|
|
|
# end
|
|
|
|
test "layout links" do
|
|
|
|
get root_path
|
2025-01-04 10:21:22 +08:00
|
|
|
assert_template "static_pages/home"
|
2024-12-31 00:37:02 +08:00
|
|
|
assert_select "a[href=?]", root_url, count: 2
|
|
|
|
assert_select "a[href=?]", about_url
|
|
|
|
assert_select "a[href=?]", help_url
|
|
|
|
assert_select "a[href=?]", contact_url
|
|
|
|
end
|
|
|
|
end
|