From: "drnlmuller+debian@gmail.com" <drnlmuller+debian@gmail.com>
Date: Tue, 14 Jun 2016 14:40:12 +0200
Subject: Remove tests from test_email that require dns.

Some of the new tests in test_email also require dns. This patch
removes them so the build does not require network access.

Patch-Name: 0003-Remove-tests-from-test_email-that-require-dns.patch
Forwarded: not-needed
---
 formencode/tests/test_email.py | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/formencode/tests/test_email.py b/formencode/tests/test_email.py
index f79aea8..31cce5e 100644
--- a/formencode/tests/test_email.py
+++ b/formencode/tests/test_email.py
@@ -68,19 +68,3 @@ class TestEmail(unittest.TestCase):
 
         for email, expected in valid_email_addresses:
             self.assertEqual(self.validate(email), expected)
-
-
-class TestUnicodeEmailWithResolveDomain(unittest.TestCase):
-
-    def setUp(self):
-        self.validator = Email(resolve_domain=True)
-
-    def test_unicode_ascii_subgroup(self):
-        self.assertEqual(self.validator.to_python(
-            'foo@yandex.com'), 'foo@yandex.com')
-
-    def test_cyrillic_email(self):
-        return
-        # NOTE test failing because domain is expired. Need a new example domain
-        self.assertEqual(self.validator.to_python(
-            'me@письмо.рф'), 'me@письмо.рф')
