Esempio n. 1
0
 def test_alphabet_at_instantiation(self):
     rs = Rstr(vowels='AEIOU')
     assert re.match('^[AEIOU]{1,10}$', rs.vowels())
Esempio n. 2
0
 def test_alphabet_at_instantiation(self):
     rs = Rstr(vowels='AEIOU')
     assert re.match('^[AEIOU]{1,10}$', rs.vowels())
Esempio n. 3
0
 def test_alphabet_at_instantiation(self) -> None:
     rs = Rstr(vowels='AEIOU')
     assert_matches('^[AEIOU]{1,10}$', rs.vowels())