update tests for django >1.6, disable integration tests until I can figure out a good local solution
This commit is contained in:
parent
e732cf3613
commit
da4bbed5d7
|
@ -1,6 +0,0 @@
|
|||
from forms import *
|
||||
from helpers import *
|
||||
from models import *
|
||||
from views import *
|
||||
|
||||
from integration import *
|
|
@ -7,10 +7,7 @@ class HelperTests(TestCase):
|
|||
response = helpers.ip_info("foobar.doesnotexist.local")
|
||||
self.assertEqual([['Error', u'Unable to resolve foobar.doesnotexist.local: [Errno -2] Name or service not known']],
|
||||
response)
|
||||
# The following is currently the first globally unique IPv4 and IPv6 address I could find
|
||||
# that did not change based upon your geography.
|
||||
# http://test-ipv6.com/
|
||||
response = helpers.ip_info("ds.test-ipv6.com")
|
||||
self.assertEqual([['IPv4 (1)', u'216.218.228.114'], ['IPv6 (1)', u'2001:470:1:18::2']],
|
||||
response = helpers.ip_info("time1.google.com")
|
||||
self.assertEqual([['IPv4 (1)', u'216.239.32.15'], ['IPv6 (1)', u'2001:4860:4802:32::f']],
|
||||
response)
|
||||
|
|
@ -78,16 +78,3 @@ class PostTests(TestCase):
|
|||
self.assertContains(response,
|
||||
'<input type="hidden" name="dns_server" value="testserver.test.net" />',
|
||||
html=True)
|
||||
|
||||
|
||||
class HelperTests(TestCase):
|
||||
def test_ipinfo_ResolutionFail(self):
|
||||
response = helpers.ip_info("foobar.doesnotexist.local")
|
||||
self.assertEqual([['Error', u'Unable to resolve foobar.doesnotexist.local: [Errno -2] Name or service not known']],
|
||||
response)
|
||||
# The following is currently the first globally unique IPv4 and IPv6 address I could find
|
||||
# that did not change based upon your geography.
|
||||
# http://test-ipv6.com/
|
||||
response = helpers.ip_info("ds.test-ipv6.com")
|
||||
self.assertEqual([['IPv4 (1)', u'216.218.228.114'], ['IPv6 (1)', u'2001:470:1:18::2']],
|
||||
response)
|
Loading…
Reference in New Issue