1
0
mirror of https://github.com/MousaZeidBaker/poetry-plugin-up.git synced 2025-10-05 21:32:40 +02:00
Files
poetry-plugin-up/tests/helpers.py
Mousa Zeid Baker 0a48f00b67 feat: initial commit
2022-12-13 12:18:52 +01:00

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