require "test_helper"

class FrontTest < ActionDispatch::IntegrationTest
  test "can see the root page" do
    get root_path
    assert_response :success
  end

  test "can see the user profile page" do
    get user_path("qichunren")
    assert_response :success
  end

  test "can see the user login page" do
    get login_path
    assert_response :success
  end

  test "can see the user register page" do
    get sign_up_path
    assert_response :success
  end

  test "can see the found user password page" do
    get new_password_path
    assert_response :success
  end
end
