Test for set/get boolean values.

This commit is contained in:
Nicholas Serra 2015-07-31 15:05:18 -04:00
parent 664bd3e23f
commit a029bfd89d
1 changed files with 3 additions and 0 deletions

View File

@ -120,6 +120,9 @@ class TestMemcache(TestCase):
self.mc.set('a' * SERVER_MAX_KEY_LENGTH, 1)
self.mc.set('a' * SERVER_MAX_KEY_LENGTH, 1, noreply=True)
def test_setget_boolean(self):
"""GitHub issue #75. Set/get with boolean values."""
self.check_setget("bool", True)
if __name__ == "__main__":
# failures = 0