def test_matches():

    r = {
        "playerID": "webstra01",
        "teamID": 'BOS',
        'yearID': '1960',
        'AB': '3',
        'H': '0',
        'HR': 0,
        'RBI': '1'
    }

    temp = {"playerID": "webstra01"}

    test = CSVDataTable.matches_template(r, temp)
    print("Matches = ", test)
def test_match():
    row = {"cool": "yes", "db": "no"}
    t = {"cool": "yes"}
    result = CSVDataTable.matches_template(row, t)
    print(result)