Beispiel #1
0
def test_does_not_match_key_in_query(): # type: () -> None
    q1 = Query(A).equal_to('age', 1)
    q2 = Query(B)
    result = q2.does_not_match_key_in_query('work_year', 'age', q1).find()
    assert len(result) == 45
Beispiel #2
0
def test_does_not_match_key_in_query():
    q1 = Query(A).equal_to("age", 1)
    q2 = Query(B)
    result = q2.does_not_match_key_in_query("work_year", "age", q1).find()
    assert len(result) == 45
Beispiel #3
0
def test_does_not_match_key_in_query():
    q1 = Query(A).equal_to('age', 1)
    q2 = Query(B)
    result = q2.does_not_match_key_in_query('work_year', 'age', q1).find()
    assert len(result) == 45
def test_does_not_match_key_in_query():  # type: () -> None
    q1 = Query(A).equal_to("age", 1)
    q2 = Query(B)
    result = q2.does_not_match_key_in_query("work_year", "age", q1).find()
    assert len(result) == 45