def test_contains_winning_combination_when_contains_combination(row_length, player_positions):
    # given
    board = Board(row_length)
    ajud = Ajudicator(board)

    # when
    result = ajud.contains_winning_combination(player_positions)

    # then
    assert not result