Ejemplo n.º 1
0
 def test_umlaut(self):
     with pytest.raises(ConversionError):
         check_id('withföreignlëtters')
Ejemplo n.º 2
0
 def test_almost_b62(self):
     with pytest.raises(ConversionError):
         check_id('almost-base62')
Ejemplo n.º 3
0
 def test_empty(self):
     with pytest.raises(ConversionError):
         check_id('')
Ejemplo n.º 4
0
 def test_punctuation(self):
     with pytest.raises(ConversionError):
         check_id('.')
Ejemplo n.º 5
0
 def test_valid(self):
     check_id('Base62string')