Skip to content

Commit

Permalink
Hide test base from nose.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed May 2, 2013
1 parent 25ae10a commit 8f52974
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ZEO/tests/testAuth.py
Expand Up @@ -22,7 +22,7 @@
from ZEO.Exceptions import ClientDisconnected
from ZEO.tests.ConnectionTests import CommonSetupTearDown

class AuthTest(CommonSetupTearDown):
class _AuthTest(CommonSetupTearDown):
__super_getServerConfig = CommonSetupTearDown.getServerConfig
__super_setUp = CommonSetupTearDown.setUp
__super_tearDown = CommonSetupTearDown.tearDown
Expand Down Expand Up @@ -111,14 +111,14 @@ def testUnauthenticatedMessage(self):
self.assertRaises(ClientDisconnected, self._storage.undoInfo)


class PlainTextAuth(AuthTest):
class PlainTextAuth(_AuthTest):
import ZEO.tests.auth_plaintext
protocol = "plaintext"
database = "authdb.sha"
dbclass = ZEO.tests.auth_plaintext.Database
realm = "Plaintext Realm"

class DigestAuth(AuthTest):
class DigestAuth(_AuthTest):
import ZEO.auth.auth_digest
protocol = "digest"
database = "authdb.digest"
Expand Down

0 comments on commit 8f52974

Please sign in to comment.