Skip to content

Commit

Permalink
Let tests access core to check that coverage works
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Oct 6, 2023
1 parent 94ff6b6 commit 090be02
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_dummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@

"""Test dummy."""

from my_microservice.core.greeting import generate_greeting


def test_dummy():
"""Just makes the CI pass."""
assert True
"""A very simple example test."""
greeting = generate_greeting("monde", "French", True)
assert greeting.message == "Salut monde!"

0 comments on commit 090be02

Please sign in to comment.