diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-03 19:38:39 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-03 19:38:39 +0000 |
commit | 5e8f945a1ea2f34f40a5e033801d66162fc63850 (patch) | |
tree | 020febcf5d604fb2e986bafc5449366c9318fff9 /ipalib/tests/test_public.py | |
parent | 9b9615df79d27a74b3cefd1dab708c98a5832b71 (diff) | |
download | freeipa.git-5e8f945a1ea2f34f40a5e033801d66162fc63850.tar.gz freeipa.git-5e8f945a1ea2f34f40a5e033801d66162fc63850.tar.xz freeipa.git-5e8f945a1ea2f34f40a5e033801d66162fc63850.zip |
242: Started cleanup of custom exceptions; added unit tests for errors.IPAError
Diffstat (limited to 'ipalib/tests/test_public.py')
-rw-r--r-- | ipalib/tests/test_public.py | 4 |
1 files changed, 2 insertions, 2 deletions
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. """ |