summaryrefslogtreecommitdiff
path: root/tests/test_location.py
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2018-10-15 09:56:42 -0500
committerGitHub <noreply@github.com>2018-10-15 09:56:42 -0500
commitbda1306749c62ef4f11cfe567ed7d56c8ad94240 (patch)
tree304c696c105ca15bbe0f13d96c79524974de768b /tests/test_location.py
parent81576ee51564c49d5ff3c1c07f214f22a8438231 (diff)
parenta54bc1ccac17625991e26eb5d4577f893803c683 (diff)
downloadpyramid-bda1306749c62ef4f11cfe567ed7d56c8ad94240.tar.gz
pyramid-bda1306749c62ef4f11cfe567ed7d56c8ad94240.tar.bz2
pyramid-bda1306749c62ef4f11cfe567ed7d56c8ad94240.zip
Merge pull request #3388 from mmerickel/black
format source using black
Diffstat (limited to 'tests/test_location.py')
-rw-r--r--tests/test_location.py29
1 files changed, 20 insertions, 9 deletions
diff --git a/tests/test_location.py b/tests/test_location.py
index e1f47f4ab..163bb85aa 100644
--- a/tests/test_location.py
+++ b/tests/test_location.py
@@ -1,15 +1,22 @@
import unittest
+from zope.interface import implementer
+from pyramid.interfaces import ILocation
+
class TestInside(unittest.TestCase):
def _callFUT(self, one, two):
from pyramid.location import inside
+
return inside(one, two)
-
+
def test_inside(self):
o1 = Location()
- o2 = Location(); o2.__parent__ = o1
- o3 = Location(); o3.__parent__ = o2
- o4 = Location(); o4.__parent__ = o3
+ o2 = Location()
+ o2.__parent__ = o1
+ o3 = Location()
+ o3.__parent__ = o2
+ o4 = Location()
+ o4.__parent__ = o3
self.assertEqual(self._callFUT(o1, o1), True)
self.assertEqual(self._callFUT(o2, o1), True)
@@ -18,23 +25,27 @@ class TestInside(unittest.TestCase):
self.assertEqual(self._callFUT(o1, o4), False)
self.assertEqual(self._callFUT(o1, None), False)
+
class TestLineage(unittest.TestCase):
def _callFUT(self, context):
from pyramid.location import lineage
+
return lineage(context)
def test_lineage(self):
o1 = Location()
- o2 = Location(); o2.__parent__ = o1
- o3 = Location(); o3.__parent__ = o2
- o4 = Location(); o4.__parent__ = o3
+ o2 = Location()
+ o2.__parent__ = o1
+ o3 = Location()
+ o3.__parent__ = o2
+ o4 = Location()
+ o4.__parent__ = o3
result = list(self._callFUT(o3))
self.assertEqual(result, [o3, o2, o1])
result = list(self._callFUT(o1))
self.assertEqual(result, [o1])
-from pyramid.interfaces import ILocation
-from zope.interface import implementer
+
@implementer(ILocation)
class Location(object):
__name__ = __parent__ = None