require "test_helper" class StaticPagesControllerTest < ActionDispatch::IntegrationTest def setup @base_title = "Ruby on Rails Tutorial Sample App" end test "should get root" do get root_path assert_response :success assert_select "title", full_title("Home") end test "should get help" do get help_path assert_response :success assert_select "title", full_title("Help") end test "Should get about" do get about_path assert_response :success assert_select "title", full_title("About") end test "Should get contact" do get contact_path assert_response :success assert_select "title", full_title("Contact") end end