Commit 8f529749 authored by Tres Seaver's avatar Tres Seaver

Hide test base from nose.

parent 25ae10a3
...@@ -22,7 +22,7 @@ from ZEO import zeopasswd ...@@ -22,7 +22,7 @@ from ZEO import zeopasswd
from ZEO.Exceptions import ClientDisconnected from ZEO.Exceptions import ClientDisconnected
from ZEO.tests.ConnectionTests import CommonSetupTearDown from ZEO.tests.ConnectionTests import CommonSetupTearDown
class AuthTest(CommonSetupTearDown): class _AuthTest(CommonSetupTearDown):
__super_getServerConfig = CommonSetupTearDown.getServerConfig __super_getServerConfig = CommonSetupTearDown.getServerConfig
__super_setUp = CommonSetupTearDown.setUp __super_setUp = CommonSetupTearDown.setUp
__super_tearDown = CommonSetupTearDown.tearDown __super_tearDown = CommonSetupTearDown.tearDown
...@@ -111,14 +111,14 @@ class AuthTest(CommonSetupTearDown): ...@@ -111,14 +111,14 @@ class AuthTest(CommonSetupTearDown):
self.assertRaises(ClientDisconnected, self._storage.undoInfo) self.assertRaises(ClientDisconnected, self._storage.undoInfo)
class PlainTextAuth(AuthTest): class PlainTextAuth(_AuthTest):
import ZEO.tests.auth_plaintext import ZEO.tests.auth_plaintext
protocol = "plaintext" protocol = "plaintext"
database = "authdb.sha" database = "authdb.sha"
dbclass = ZEO.tests.auth_plaintext.Database dbclass = ZEO.tests.auth_plaintext.Database
realm = "Plaintext Realm" realm = "Plaintext Realm"
class DigestAuth(AuthTest): class DigestAuth(_AuthTest):
import ZEO.auth.auth_digest import ZEO.auth.auth_digest
protocol = "digest" protocol = "digest"
database = "authdb.digest" database = "authdb.digest"
......
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