diff --git a/tests.py b/tests.py index d28571a..1d01b49 100755 --- a/tests.py +++ b/tests.py @@ -8,12 +8,15 @@ import unittest import emailvalid EMAILS = ( - ('username@example.com; anotheruser@example.com', True), - ('username@mi-domain', False), - ('another,user@example.com', False), - ('another;user@example.com', False), + ('username@domain.com, anotheruser@domain.com', True), + ('username@domain.com; anotheruser@domain.com', True), + ('username@domain.com;anotheruser@domain.com', True), + ('username@domain', False), + ('another,user@domain.com', False), + ('another;user@domain.com', False), ) + class BankNumberTest(unittest.TestCase): ''' Test Case for emailvalid