diff options
-rw-r--r-- | tests/test_Config.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/test_Config.py b/tests/test_Config.py index cfdefd8b..046af278 100644 --- a/tests/test_Config.py +++ b/tests/test_Config.py @@ -60,27 +60,6 @@ def test_tristate(): auto """ -def test_parser_fallback(): - """ - Make sure we also parse git-<subcommands> sections if - gbp <subcommand> was used. - - >>> import os - >>> from gbp.config import GbpOptionParser - >>> parser = GbpOptionParser('foo') - >>> tmpdir = str(context.new_tmpdir('foo')) - >>> confname = os.path.join(tmpdir, 'gbp.conf') - >>> parser.config_files = [confname] - >>> f = open(confname, 'w') - >>> f.write('[DEFAULT]\\nthere = was\\n[foo]\\nthere = is\\n[git-foo]\\nno = truth\\n') - >>> f.close() - >>> parser.parse_config_files() - >>> parser.config['there'] - 'is' - >>> parser.config['no'] - 'truth' - """ - def test_filter(): """ The filter option should always parse as a list |