Option.force_default() -> opt value returns the default value

This commit is contained in:
gwen
2012-08-13 16:06:02 +02:00
parent 7006091c9c
commit 11b2edd07d
8 changed files with 123 additions and 86 deletions

View File

@ -71,10 +71,10 @@ def process_modules():
if not '__init__' in modname:
parse_module(modname)
pyfiles = glob(normpath(join(directory, '..', 'tiramisu', 'test', '*.py')))
pyfiles = glob(normpath(join(directory, '..', 'test', '*.py')))
for pyf in pyfiles:
pyf = splitext(basename(pyf))[0]
modname = 'tiramisu.test.' + pyf
modname = 'test.' + pyf
if not '__init__' in modname:
parse_module(modname)