1. Build a basic chatbot using Gemini 2.0 flash
This commit is contained in:
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
10
tests/test_graph.py
Normal file
10
tests/test_graph.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import unittest
|
||||
from src.graph_builder import build_graph
|
||||
|
||||
class TestGraph(unittest.TestCase):
|
||||
def test_graph_runs(self):
|
||||
graph = build_graph()
|
||||
self.assertIsNotNone(graph)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user