Commit 7a7d886e by Chris Jerdonek

Implemented Context.pop().

parent a0724811
...@@ -139,4 +139,6 @@ class Context(object): ...@@ -139,4 +139,6 @@ class Context(object):
def push(self, item): def push(self, item):
self._stack.append(item) self._stack.append(item)
def pop(self):
return self._stack.pop()
...@@ -229,3 +229,16 @@ class ContextTestCase(TestCase): ...@@ -229,3 +229,16 @@ class ContextTestCase(TestCase):
context.push({key: "buzz"}) context.push({key: "buzz"})
self.assertEquals(context.get(key), "buzz") self.assertEquals(context.get(key), "buzz")
def test_pop(self):
"""
Test pop().
"""
key = "foo"
context = Context({key: "bar"}, {key: "buzz"})
self.assertEquals(context.get(key), "buzz")
item = context.pop()
self.assertEquals(item, {"foo": "buzz"})
self.assertEquals(context.get(key), "bar")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment