From 1f9b81865eb8fc4382d1cc7fae0bf4d256271ddb Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 31 Oct 2025 17:15:30 -0700 Subject: [PATCH] Update test_bot.py --- modules/test_bot.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/test_bot.py b/modules/test_bot.py index 8e6f188..009d071 100644 --- a/modules/test_bot.py +++ b/modules/test_bot.py @@ -77,6 +77,13 @@ class TestBot(unittest.TestCase): self.assertTrue(result) self.assertIsInstance(result1, str) + def test_initialize_inventory_database(self): + from inventory import initialize_inventory_database, process_inventory_command + result = initialize_inventory_database() + result1 = process_inventory_command(0, 'inventory', name="none", location="none") + self.assertTrue(result) + self.assertIsInstance(result1, str) + def test_init_news_sources(self): from filemon import initNewsSources result = initNewsSources()