diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2015-01-22 07:25:49 +0100 |
---|---|---|
committer | Alexis Hildebrandt <afh@surryhill.net> | 2015-01-22 07:25:49 +0100 |
commit | 2030240849a1a3c14b54428fb2f73c662e62d4a4 (patch) | |
tree | 79dd841690a9d4683447a9819de9d5e68367dc54 /test | |
parent | bec52e3221d74ce3bf1383b245beae5a6214e387 (diff) | |
download | fork-ledger-2030240849a1a3c14b54428fb2f73c662e62d4a4.tar.gz fork-ledger-2030240849a1a3c14b54428fb2f73c662e62d4a4.tar.bz2 fork-ledger-2030240849a1a3c14b54428fb2f73c662e62d4a4.zip |
[tests] Move untested_options to CheckBaselineTests
Diffstat (limited to 'test')
-rwxr-xr-x | test/CheckBaselineTests.py | 29 | ||||
-rwxr-xr-x | test/CheckOptions.py | 29 |
2 files changed, 29 insertions, 29 deletions
diff --git a/test/CheckBaselineTests.py b/test/CheckBaselineTests.py index 404c12db..3c3e590b 100755 --- a/test/CheckBaselineTests.py +++ b/test/CheckBaselineTests.py @@ -18,6 +18,35 @@ class CheckBaselineTests (CheckOptions): CheckOptions.__init__(self, args) self.missing_baseline_tests = set() + self.untested_options = [ + 'anon', + 'args-only', + 'cache', + 'debug', + 'download', + 'file', + 'force-color', + 'force-pager', + 'full-help', + 'help', + 'help-calc', + 'help-comm', + 'help-disp', + 'import', + 'init-file', + 'no-color', + 'options', + 'price-db', + 'price-exp', + 'revalued-total', + 'script', + 'seed', + 'trace', + 'verbose', + 'verify', + 'version' + ] + def main(self): for option in self.ledger_options(): if option in self.untested_options: continue diff --git a/test/CheckOptions.py b/test/CheckOptions.py index d9565600..57d711db 100755 --- a/test/CheckOptions.py +++ b/test/CheckOptions.py @@ -24,35 +24,6 @@ class CheckOptions (object): self.missing_options = set() self.unknown_options = set() - self.untested_options = [ - 'anon', - 'args-only', - 'cache', - 'debug', - 'download', - 'file', - 'force-color', - 'force-pager', - 'full-help', - 'help', - 'help-calc', - 'help-comm', - 'help-disp', - 'import', - 'init-file', - 'no-color', - 'options', - 'price-db', - 'price-exp', - 'revalued-total', - 'script', - 'seed', - 'trace', - 'verbose', - 'verify', - 'version' - ] - self.known_alternates = [ 'cost', 'first', |