Skip to content

SocketMemcachedTests seems to be redundant #220

Description

@moisesguimaraes

The test SocketMemcachedTests seems redundant in the current codebase.

class SocketMemcachedTests(test_simple_functions.MemcachedTests):
"""
Same tests as above, just make sure it works with sockets.
"""
def setUp(self):
self.server = '/tmp/memcached.sock'
self.client = bmemcached.Client(self.server, 'user', 'password')

It extends test_simple_functions.MemcachedTests, but this one is also a socket test:

class MemcachedTests(unittest.TestCase):
def setUp(self):
self.server = '/tmp/memcached.sock'
self.client = bmemcached.Client(self.server, 'user', 'password')
self.reset()

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions