Exemplo n.º 1
0
 def test_illegal(self):
     with pytest.raises(NameError):
         interface._ensure_identifier("12345!£$%^&*()678909")
Exemplo n.º 2
0
 def test_strip_bad_start(self):
     assert interface._ensure_identifier("123testing123") == "testing123"
Exemplo n.º 3
0
 def test_strip_bad_chars(self):
     assert interface._ensure_identifier("Upsidé;Down!") == "UpsidDown"
Exemplo n.º 4
0
 def test_illegal(self):
     with pytest.raises(NameError):
         interface._ensure_identifier("12345!£$%^&*()678909")
Exemplo n.º 5
0
 def test_strip_bad_start(self):
     assert interface._ensure_identifier("123testing123") == "testing123"
Exemplo n.º 6
0
 def test_strip_bad_chars(self):
     assert interface._ensure_identifier("Upsidé;Down!") == "UpsidDown"