1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/lib/options_helpers.py

29 lines
723 B
Python
Raw Normal View History

2017-05-12 12:36:43 +02:00
"""Provides helper classes for testing option handling in pip
"""
2018-07-30 08:15:17 +02:00
from pip._internal.cli import cmdoptions
2018-07-30 06:02:47 +02:00
from pip._internal.cli.base_command import Command
from pip._internal.commands import CommandInfo, commands_dict
2017-05-12 12:36:43 +02:00
class FakeCommand(Command):
def main(self, args):
index_opts = cmdoptions.make_option_group(
cmdoptions.index_group,
self.parser,
)
self.parser.add_option_group(index_opts)
return self.parse_args(args)
class AddFakeCommandMixin:
2017-05-12 12:36:43 +02:00
def setup(self):
commands_dict['fake'] = CommandInfo(
'tests.lib.options_helpers', 'FakeCommand', 'fake summary',
)
2017-05-12 12:36:43 +02:00
def teardown(self):
commands_dict.pop('fake')