summaryrefslogtreecommitdiffstats
path: root/ipalib/tests
Commit message (Collapse)AuthorAgeFilesLines
* 223: IPATypeError takes as first argument, has attributeJason Gerard DeRose2008-08-291-8/+21
|
* 222: Fixed broken assertion in IPATypeError; did more work on docstrings in sameJason Gerard DeRose2008-08-291-7/+12
|
* 221: Added errors.IPATypeError exception; added new test_errors.py module ↵Jason Gerard DeRose2008-08-291-0/+46
| | | | with corresponding unit tests
* 220: Renamed Option2.validate_scalar() to Option2.__validate_scalar(); added ↵Jason Gerard DeRose2008-08-291-22/+94
| | | | Option2.normalize() method; added corresponding unit tests
* 218: Finished unit tests for Option2.validate(), Option2.validate_scalar()Jason Gerard DeRose2008-08-281-1/+56
|
* 217: Started work on new Option2 class that is more declarative and doesn't ↵Jason Gerard DeRose2008-08-281-1/+28
| | | | require subclassing from Option
* 216: Added ipa_types.Enum.validate() method; added corresponding unit testsJason Gerard DeRose2008-08-281-3/+14
|
* 215: Added basics of ipa_types.Enum class; added corresponding unit testsJason Gerard DeRose2008-08-281-0/+31
|
* 214: Added ipa_types.Bool.validate() method; added corresponding unit testsJason Gerard DeRose2008-08-281-0/+9
|
* 213: Added ipa_type.Bool class; added corresponding unit testsJason Gerard DeRose2008-08-281-0/+39
|
* 212: Type.__init__() now can also raise TypeError; added unit tests for ↵Jason Gerard DeRose2008-08-281-0/+18
| | | | Type.__init__()
* 210: Type.__init__() now takes the type as the first argument, does not use ↵Jason Gerard DeRose2008-08-281-10/+11
| | | | subclass attribute; updated Int, Unicode, and their unit tests accordingly
* 209: Added Type.__call__() method; fleshed out Type.convert() method; added ↵Jason Gerard DeRose2008-08-281-0/+30
| | | | corresponding unit tests
* 207: Added Unicode.validate() method and corresponding unit testsJason Gerard DeRose2008-08-271-1/+16
|
* 206: Finished unit tests for Unicode.__init__()Jason Gerard DeRose2008-08-271-0/+31
|
* 205: Continued work on Unicode.__init__() and corresponding unit testsJason Gerard DeRose2008-08-271-5/+46
|
* 204: Fixed logic error in check_min_max(); started work on argument ↵Jason Gerard DeRose2008-08-271-5/+14
| | | | validation for Unicode
* 203: Finished ipa_types.check_min_max() function; added corresponding unit ↵Jason Gerard DeRose2008-08-271-16/+46
| | | | tests; ipa_types.Int now uses check_min_max()
* 202: Started work on type classes in ipa_types module; added corresponding ↵Jason Gerard DeRose2008-08-271-0/+110
| | | | unit tests
* 198: Renamed Command.default() to Command.get_default(); ↵Jason Gerard DeRose2008-08-261-8/+8
| | | | Command.get_default_iter() now correctly calls Option.get_default() instead of Option.default()
* 197: Added new public.Option.get_default() method that calls ↵Jason Gerard DeRose2008-08-261-3/+16
| | | | Option.default_from() if it's a DefaultFrom instance, and otherwise returns Option.default (the static default value)
* 195: Started on docstring for public.DefaultFromJason Gerard DeRose2008-08-261-0/+6
|
* 193: Removed depreciated public.PublicAPI class; removed corresponding unit ↵Jason Gerard DeRose2008-08-261-17/+0
| | | | tests
* 190: Renamed public.option class to public.OptionJason Gerard DeRose2008-08-251-15/+15
|
* 188: Added unit tests for public.Object.finalize() methodJason Gerard DeRose2008-08-221-0/+65
|
* 187: Renamed plubic.obj to Object; reworked plublic.Object unit tests to use ↵Jason Gerard DeRose2008-08-221-4/+15
| | | | ClassChecker
* 186: Renamed public.attr to Attribute; reworked public.Attribute unit tests ↵Jason Gerard DeRose2008-08-221-21/+32
| | | | using ClassChecker
* 185: Renamed public.prop to PropertyJason Gerard DeRose2008-08-221-6/+6
|
* 184: Renamed public.mthd class to MethodJason Gerard DeRose2008-08-221-4/+4
|
* 183: Added public.DefaultFrom class; added corresponding unit testsJason Gerard DeRose2008-08-221-0/+35
|
* 182: Renamed plublic.cmd base class to CommandJason Gerard DeRose2008-08-152-22/+26
|
* 179: DictProxy now has __call__() method that iterates through the values; ↵Jason Gerard DeRose2008-08-151-0/+2
| | | | removed __call__() method from NameSpace as it subclasses from DictProxys; DictProxy unit tests now test __call__()
* 178: Registrar now subclasses from DictProxy; made Registrar.__iter__ behave ↵Jason Gerard DeRose2008-08-151-28/+21
| | | | same as the other container emulation in plugable.py, and made the dictorary interface return the base and the attribute interface return the MagicDict; updated API class and unit tests
* 176: PluginProxy now subclasses from SetProxyJason Gerard DeRose2008-08-151-2/+2
|
* 175: Renamed Proxy to PluginProxyJason Gerard DeRose2008-08-152-13/+13
|
* 173: NameSpace now subclasses from DictProxyJason Gerard DeRose2008-08-151-2/+2
|
* 171: MagicDict now subclasses from DictProxy; updated unit testsJason Gerard DeRose2008-08-151-56/+56
|
* 170: Added SetProxy and DictProxy classes to plugable so container emulation ↵Jason Gerard DeRose2008-08-151-0/+88
| | | | can be consolidated
* 169: Renamed DictProxy to MagicDictJason Gerard DeRose2008-08-141-6/+6
|
* 165: Added unit tests for plugable.lock() function; replaced occurances of ↵Jason Gerard DeRose2008-08-141-0/+29
| | | | 'self.__lock__()' with 'lock(self)' in plugable.py
* 161: Registrar now takes advantage of DictProxy; updated corresponding unit ↵Jason Gerard DeRose2008-08-141-24/+22
| | | | tests
* 160: DictProxy now checks type of d in __init__(); updated unit testsJason Gerard DeRose2008-08-141-0/+2
|
* 159: Added plugable.DictProxy class; added corresponding unit tests; added ↵Jason Gerard DeRose2008-08-142-1/+72
| | | | setitem(), delitem() functions to tstutil
* 156: Fixed all broken docstring cross referencesJason Gerard DeRose2008-08-143-32/+39
|
* 154: Merged ProxyTarget functionality into Plugin to make things a bit clearerJason Gerard DeRose2008-08-141-132/+123
|
* 152: Updated unit tests check_name() now that it returns the nameJason Gerard DeRose2008-08-141-1/+1
|
* 151: Rearanged tests in test_plugable.py to match definition order in ↵Jason Gerard DeRose2008-08-141-143/+143
| | | | plugable.py
* 150: NameSpace.__iter__() now iterates through the names, not the members; ↵Jason Gerard DeRose2008-08-142-8/+15
| | | | added NameSpace.__call__() method which iterates through the members; NameSpace no longer requires members to be Proxy instances; updated unit tests and affected code; cleaned up NameSpace docstrings and switch to epydoc param docstrings
* 146: Removed CLI.parse_kw() method and corresponding unit testsJason Gerard DeRose2008-08-131-13/+0
|
* 145: Added new CLI.parse() method; added corresponding unit testsJason Gerard DeRose2008-08-131-0/+17
|