Arbeite mal moritz lutz

master
Philipp Benning 2023-01-09 14:53:41 +01:00
parent 492018fea2
commit 893b136e20
2 changed files with 32 additions and 1 deletions

Binary file not shown.

View File

@ -1,2 +1,33 @@
import unittest
import s2_a4_a
import s2_a4_a
test_numbers = [
"+1 223-456-7890",
"1-223-456-7890",
"+1 223 456-7890",
"(223) 456-7890",
"1 223 456 7890",
"223.456.7890",
"1-989-111-2222",
]
test_results = [
"1-223-456-7890"
]
class Test_Normalizer(unittest.TestCase):
def test1(self):
input = s2_a4_a.normalize(test_numbers[0])
output = test_results[0]
self.assertEqual(input, output)
def test2(self):
self.assertRaises(ValueError, s2_a4_a.normalize, "Gehen Strings fit bre?")
if __name__ == '__main__':
unittest.main()