From 362ce8853c909698015a8d70c789b6a711473e87 Mon Sep 17 00:00:00 2001 From: resteve Date: Tue, 13 Nov 2012 11:07:13 +0100 Subject: [PATCH] Add more emails in test --- tests.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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