You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
from unittest import TestCase
import pytest
class ExceptionsTestCase(TestCase): def _get(self): from kazoo import exceptions
return exceptions
def test_backwards_alias(self): module = self._get() assert hasattr(module, "NoNodeException") assert module.NoNodeException is module.NoNodeError
def test_exceptions_code(self): module = self._get() exc_8 = module.EXCEPTIONS[-8] assert isinstance(exc_8(), module.BadArgumentsError)
def test_invalid_code(self): module = self._get() with pytest.raises(RuntimeError): module.EXCEPTIONS.__getitem__(666)
def test_exceptions_construction(self): module = self._get() exc = module.EXCEPTIONS[-101]() assert type(exc) is module.NoNodeError assert exc.args == ()
|