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