Example #1
0
def test_find_all_abnormal_string(s, letter):
    """Test find_all behaviour called with wrong objects."""
    with pytest.raises(TypeError):
        next(_find_all(s, letter))
Example #2
0
def test_find_all_none_string(s, letter):
    """Test find_all behaviour for empty cases."""
    with pytest.raises(StopIteration):
        assert next(_find_all(s, letter))
Example #3
0
def test_find_all_normal_string(s, letter, occur):
    """Test find_all behaviour for average cases."""
    assert tuple(_find_all(s, letter)) == occur
Example #4
0
def test_find_all_abnormal_string(s, letter):
    """Test find_all behaviour called with wrong objects."""
    with pytest.raises(TypeError):
        next(_find_all(s, letter))
Example #5
0
def test_find_all_none_string(s, letter):
    """Test find_all behaviour for empty cases."""
    with pytest.raises(StopIteration):
        assert next(_find_all(s, letter))
Example #6
0
def test_find_all_normal_string(s, letter, occur):
    """Test find_all behaviour for average cases."""
    assert tuple(_find_all(s, letter)) == occur