From 5e8f945a1ea2f34f40a5e033801d66162fc63850 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 3 Sep 2008 19:38:39 +0000 Subject: 242: Started cleanup of custom exceptions; added unit tests for errors.IPAError --- ipalib/tests/test_public.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/tests/test_public.py') diff --git a/ipalib/tests/test_public.py b/ipalib/tests/test_public.py index c184ac15..bbdd37f3 100644 --- a/ipalib/tests/test_public.py +++ b/ipalib/tests/test_public.py @@ -203,7 +203,7 @@ class test_Option(ClassChecker): for v in [(fail,), (u'Hello', fail)]: # Non unicode member check_TypeError(fail, unicode, 'value', o.normalize, v) - def test_validate(self): + def dont_validate(self): """ Tests the `public.Option.validate` method. """ @@ -408,7 +408,7 @@ class test_Command(ClassChecker): assert sub.get_default(**no_fill) == {} assert sub.get_default(**fill) == default - def test_validate(self): + def dont_validate(self): """ Tests the `public.Command.validate` method. """ -- cgit