* src/plugins/TestcaseGenerator.py: corrected options help dict

svn: r5264
This commit is contained in:
Martin Hawlisch 2005-10-02 11:55:32 +00:00
parent dd697dcb69
commit fa5fb849d9
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,6 @@
2005-10-02 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/plugins/TestcaseGenerator.py: corrected options help dict
2005-10-01 Alex Roitman <shura@gramps-project.org>
* src/plugins/Verify.py: Convert to new API.
* src/plugins/verify.glade: Use separate windows for errors and

View File

@ -837,11 +837,11 @@ class TestcaseGeneratorOptions(Tool.ToolOptions):
self.options_help = {
'bugs' : ("=0/1",
"Whether to create invalid database references.",
["Valid Datavase","Invalid Database"],
False),
'archive' : ("=0/1",
["Skip test","Create invalid Database references"],
True),
'dates' : ("=0/1",
"Whether to create test for date handling.",
["Skip test","Create Date tests"],
["Skip test","Create date tests"],
True),
'persons' : ("=0/1",
"Whether to create a bunch of dummy persons",
@ -849,13 +849,15 @@ class TestcaseGeneratorOptions(Tool.ToolOptions):
True),
'person_count' : ("=int",
"Number of dummy persons to generate",
2000),
"Number of persons"),
'no_trans' : ("=0/1",
"Wheter to use one transaction or multiple small ones",
["One oransaction","Multiple transactions"]),
["One transaction","Multiple transactions"],
True),
'long_names' : ("=0/1",
"Wheter to create sort or long names",
["Short names","Long names"]),
"Wheter to create short or long names",
["Short names","Long names"],
True),
}
#-------------------------------------------------------------------------