summaryrefslogtreecommitdiff
path: root/test_configobj.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_configobj.py')
-rw-r--r--test_configobj.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/test_configobj.py b/test_configobj.py
index 2d105a0..f73517a 100644
--- a/test_configobj.py
+++ b/test_configobj.py
@@ -1197,7 +1197,20 @@ def _test_validate():
... 'test4': 6.0
... }}}
1
-
+ >>> a = ['foo = fish']
+ >>> b = ['foo = integer(default=3)']
+ >>> c = ConfigObj(a, configspec=b)
+ >>> c
+ ConfigObj({'foo': 'fish'})
+ >>> from validate import Validator
+ >>> v = Validator()
+ >>> c.validate(v)
+ 0
+ >>> c.default_values
+ {'foo': 3}
+ >>> c.restore_default('foo')
+ 3
+
Now testing with repeated sections : BIG TEST
>>> repeated_1 = '''