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