Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Amele9 committed Jan 13, 2024
1 parent 519501a commit 693d208
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 27 deletions.
27 changes: 0 additions & 27 deletions tests/test_main.py

This file was deleted.

12 changes: 12 additions & 0 deletions tests/test_server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import unittest

from whatsapp_api_webhook_server_python.webhooksHandler import startServer


class ServerTestCase(unittest.TestCase):
def test_server(self):
self.assertIsNone(startServer("127.0.0.1", 5000, None, False))


if __name__ == '__main__':
unittest.main()

0 comments on commit 693d208

Please sign in to comment.