Kaydet (Commit) c5d95b17 authored tarafından Christian Heimes's avatar Christian Heimes

Add simple test for repr(lock)

üst 8ad91cc3
......@@ -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