require "test_helper"

class PagesTest < ActionDispatch::IntegrationTest
  test "can see contact page" do
    get pages_contact_path
    assert_response :success
  end

  test "can see team page" do
    get pages_team_path
    assert_response :success
  end

  test "can see partner page" do
    get pages_partner_path
    assert_response :success
  end
end
