mirror of
https://github.com/MousaZeidBaker/poetry-plugin-up.git
synced 2025-10-05 21:32:40 +02:00
24 lines
512 B
Python
24 lines
512 B
Python
from typing import Any
|
|
|
|
from poetry.console.application import Application
|
|
from poetry.poetry import Poetry
|
|
|
|
from poetry_plugin_up.command import UpCommand
|
|
|
|
|
|
class TestUpCommand(UpCommand):
|
|
def __init__(self, poetry: Poetry) -> None:
|
|
super().__init__()
|
|
self._poetry = poetry
|
|
|
|
__test__ = False
|
|
|
|
def line(self, data: Any):
|
|
print(data)
|
|
|
|
|
|
class TestApplication(Application):
|
|
def __init__(self, poetry: Poetry) -> None:
|
|
super().__init__()
|
|
self._poetry = poetry
|