Commit 9470e634 authored by Christian Heimes's avatar Christian Heimes

Add simple test for repr(lock)

parent b6402ca6
......@@ -80,6 +80,11 @@ class BaseLockTests(BaseTestCase):
lock = self.locktype()
del lock
def test_repr(self):
lock = self.locktype()
repr(lock)
del lock
def test_acquire_destroy(self):
lock = self.locktype()
lock.acquire()
......
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