def test_largest_column_product():
    '''TEST_GRID with n of 2; should = 25'''

    assert largest_column_product(set_grid(TEST_GRID), 2) == 25
def test_largest_right_diag_product():
    '''TEST_GRID with n of 2; should = 24'''

    assert largest_right_diag_product(set_grid(TEST_GRID), 2) == 24
def test_largest_row_product():
    '''TEST_GRID with n of 2; should = 12'''

    assert largest_row_product(set_grid(TEST_GRID), 2) == 12