mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
black formatted
This commit is contained in:
@@ -20,26 +20,43 @@ class ViewTestCase(TestCase):
|
||||
def setUpTestData(cls):
|
||||
|
||||
# create organizations
|
||||
cls.organizations = dict((k,
|
||||
models.Organization.objects.create(
|
||||
name="Geocode Org %s" % k, status="ok"))
|
||||
for k in ["a", "b", "c", "d"])
|
||||
cls.organizations = dict(
|
||||
(
|
||||
k,
|
||||
models.Organization.objects.create(
|
||||
name="Geocode Org %s" % k, status="ok"
|
||||
),
|
||||
)
|
||||
for k in ["a", "b", "c", "d"]
|
||||
)
|
||||
|
||||
# create facilities
|
||||
cls.facilities = dict(
|
||||
(k,
|
||||
models.Facility.objects.create(
|
||||
name=u"Geocode Fac {}".format(k), status="ok", org=cls.organizations[
|
||||
k], address1="Some street", address2=k, city="Chicago",
|
||||
country="US", state="IL", zipcode="1234", latitude=1.23,
|
||||
longitude=-1.23, geocode_status=True))
|
||||
for k in ["a", "b", "c", "d"])
|
||||
(
|
||||
k,
|
||||
models.Facility.objects.create(
|
||||
name=u"Geocode Fac {}".format(k),
|
||||
status="ok",
|
||||
org=cls.organizations[k],
|
||||
address1="Some street",
|
||||
address2=k,
|
||||
city="Chicago",
|
||||
country="US",
|
||||
state="IL",
|
||||
zipcode="1234",
|
||||
latitude=1.23,
|
||||
longitude=-1.23,
|
||||
geocode_status=True,
|
||||
),
|
||||
)
|
||||
for k in ["a", "b", "c", "d"]
|
||||
)
|
||||
|
||||
def test_base(self):
|
||||
self.assertEqual(self.facilities["a"].geocode_address,
|
||||
u"Some street a, Chicago, IL 1234")
|
||||
self.assertEqual(self.facilities["a"].geocode_coordinates,
|
||||
(1.23, -1.23))
|
||||
self.assertEqual(
|
||||
self.facilities["a"].geocode_address, u"Some street a, Chicago, IL 1234"
|
||||
)
|
||||
self.assertEqual(self.facilities["a"].geocode_coordinates, (1.23, -1.23))
|
||||
|
||||
def test_change(self):
|
||||
self.assertEqual(self.facilities["b"].geocode_status, True)
|
||||
@@ -51,7 +68,7 @@ class ViewTestCase(TestCase):
|
||||
self.facilities["c"].save()
|
||||
self.assertEqual(self.facilities["c"].geocode_status, True)
|
||||
self.assertEqual(self.facilities["d"].geocode_status, True)
|
||||
self.facilities["d"].website = 'http://www.test.com'
|
||||
self.facilities["d"].website = "http://www.test.com"
|
||||
self.facilities["d"].save()
|
||||
self.assertEqual(self.facilities["d"].geocode_status, True)
|
||||
|
||||
|
Reference in New Issue
Block a user