Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: drop hello_world #2

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions pytest_copie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,3 @@
__version__ = "0.0.1"
__author__ = "Pierrick Rambaud"
__email__ = "pierrick.rambaud49@gmail.com"


def hello_world() -> str:
"""Hello world demo method.

Returns:
the hello world string
"""
return "hello world !"
7 changes: 0 additions & 7 deletions tests/test_pytest_copie.py
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
"""Test the pytest_copie package."""

import pytest_copie


def test_hello_world():
"""Hello world test."""
assert pytest_copie.hello_world() == "hello world !"
Loading