Beispiel #1
0
def test_hlookup_vlookup_error():
    assert NA_ERROR == hlookup(1, 1, 1, 1)
    assert NA_ERROR == vlookup(1, 1, 1, 1)

    with pytest.raises(NotImplementedError, match='Array Formulas'):
        hlookup((1, 2), ((1, 2), (3, 4)), 1, 1)

    with pytest.raises(NotImplementedError, match='Array Formulas'):
        hlookup(1, ((1, 2), (3, 4)), (1, 2), 1)

    with pytest.raises(NotImplementedError, match='Array Formulas'):
        vlookup((1, 2), ((1, 2), (3, 4)), 1, 1)

    with pytest.raises(NotImplementedError, match='Array Formulas'):
        vlookup(1, ((1, 2), (3, 4)), (1, 2), 1)
Beispiel #2
0
def test_hlookup(lkup, col_idx, result, approx):
    table = (
        ('A', 'B', 'C'),
        (1, 2, 3),
        ('Z', 'Y', 'X'),
    )
    assert result == hlookup(lkup, table, col_idx, approx)
Beispiel #3
0
def test_hlookup(lkup, col_idx, result, approx):
    table = (
        ('A', 'B', 'C'),
        (1, 2, 3),
        ('Z', 'Y', 'X'),
    )
    assert result == hlookup(lkup, table, col_idx, approx)
Beispiel #4
0
def test_hlookup_vlookup_error(values, expected):
    assert hlookup(*values) == expected
    assert vlookup(*values) == expected
Beispiel #5
0
def test_hlookup_vlookup_error(values, expected):
    assert hlookup(*values) == expected
    assert vlookup(*values) == expected