예제 #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))
예제 #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))
예제 #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
예제 #4
0
파일: test_text.py 프로젝트: MSusik/beard
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))
예제 #5
0
파일: test_text.py 프로젝트: MSusik/beard
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))
예제 #6
0
파일: test_text.py 프로젝트: MSusik/beard
def test_find_all_normal_string(s, letter, occur):
    """Test find_all behaviour for average cases."""
    assert tuple(_find_all(s, letter)) == occur