示例#1
0
def test_mask_word_with_empty_string():
    with pytest.raises(InvalidWordException):
        masked = _mask_word('')
示例#2
0
def test_mask_word_with_empty_string():
    with pytest.raises(InvalidWordException):
        masked = _mask_word('')
示例#3
0
def test_mask_word_with_valid_word():
    masked = _mask_word('Python')
    assert masked == '******'
示例#4
0
def test_mask_word_with_valid_word():
    masked = _mask_word('Python')
    assert masked == '******'