summaryrefslogtreecommitdiff
path: root/tests/test_location.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-10-14 21:11:41 -0500
committerMichael Merickel <michael@merickel.org>2018-10-14 21:11:41 -0500
commit3670c2cdb732d378ba6d38e72e7cd875ff726aa9 (patch)
tree5213452a778c992d42602efe7d3b3655a349abd5 /tests/test_location.py
parent2b024920847481592b1a13d4006d2a9fa8881d72 (diff)
downloadpyramid-3670c2cdb732d378ba6d38e72e7cd875ff726aa9.tar.gz
pyramid-3670c2cdb732d378ba6d38e72e7cd875ff726aa9.tar.bz2
pyramid-3670c2cdb732d378ba6d38e72e7cd875ff726aa9.zip
move tests out of the package
Diffstat (limited to 'tests/test_location.py')
-rw-r--r--tests/test_location.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/test_location.py b/tests/test_location.py
new file mode 100644
index 000000000..e1f47f4ab
--- /dev/null
+++ b/tests/test_location.py
@@ -0,0 +1,40 @@
+import unittest
+
+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
+
+ self.assertEqual(self._callFUT(o1, o1), True)
+ self.assertEqual(self._callFUT(o2, o1), True)
+ self.assertEqual(self._callFUT(o3, o1), True)
+ self.assertEqual(self._callFUT(o4, o1), True)
+ 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
+ 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