From 49f2dcff88d979d2c9ae5b02dab03e92ccc848b3 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 25 Oct 2025 10:59:46 -0700 Subject: [PATCH] Update test_bot.py --- modules/test_bot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/test_bot.py b/modules/test_bot.py index 27b173c..b0dfd80 100644 --- a/modules/test_bot.py +++ b/modules/test_bot.py @@ -144,6 +144,9 @@ class TestBot(unittest.TestCase): ##### GAMES Tests ##### + def test_jokes(self): + from modules.games.joke import tell_joke + self.assertIsInstance(tell_joke(), str)