diff --git a/requirements.txt b/requirements.txt index af93116..e2c204b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ discord.py python-dotenv requests +pytest diff --git a/tests/test_example.py b/tests/test_example.py new file mode 100644 index 0000000..e5ccd4f --- /dev/null +++ b/tests/test_example.py @@ -0,0 +1,6 @@ +def add(x, y): + return x + y + + +def test_add(): + assert add(1, 1) == 2