require "test_helper"

class PagesControllerTest < ActionDispatch::IntegrationTest
  test "should get partner" do
    get pages_partner_path
    assert_response :success
  end

  test "should get contact page" do
    get pages_contact_path
    assert_response :success
  end

  test "should create ContactForm record" do
    assert_difference("ContactForm.count") do
      post pages_contact_path, params: {contact_form: {name: "qichunren", email: "xxxx@xxxx21.com", message: "Hello, how are you?"}}
    end
  end
end
