diff options
author | Craig Earls <enderw88@gmail.com> | 2015-01-24 15:52:07 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2015-01-24 15:52:07 -0700 |
commit | 204568d5145c77b3cf3bccd49c9ad6780b4b1fe1 (patch) | |
tree | 65a8d2f5dba1c5e6f16aeec938dbfe6928a9128e /test/CheckBaselineTests.py | |
parent | 3b56134a546146718938929edf5e40e3ca1fc87d (diff) | |
parent | d94d164b65258d2867245a63877ca75ec3bd471a (diff) | |
download | fork-ledger-204568d5145c77b3cf3bccd49c9ad6780b4b1fe1.tar.gz fork-ledger-204568d5145c77b3cf3bccd49c9ad6780b4b1fe1.tar.bz2 fork-ledger-204568d5145c77b3cf3bccd49c9ad6780b4b1fe1.zip |
Merge commit 'd94d164b65258d2867245a63877ca75ec3bd471a' into next
Diffstat (limited to 'test/CheckBaselineTests.py')
-rwxr-xr-x | test/CheckBaselineTests.py | 29 |
1 files changed, 29 insertions, 0 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 |