Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofix committed May 8, 2023
1 parent 3609e74 commit 66a589b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion thankyou/tests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
from .thankyou import give_thanks


def test_thanks():
def test_thanks_string():
thanks_string = give_thanks()
assert isinstance(thanks_string, str)


def test_thanks_tuple():
thanks_string = give_thanks(as_tuple=True)
assert isinstance(thanks_string, tuple)

0 comments on commit 66a589b

Please sign in to comment.