/
drbye
/
gag
Обзор
Документация
Войти
/
drbye
/
gag
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/test_graph.py
25 строк
709 B
Marusin Dmitry
refactor: large-scale project restructuring and module consolidation
16 июл 2026, 15:47
16 июл 2026, 15:47
64a2548
Код
Авторство
О чём код?
import pytest class TestFalkorDBClientConnection: def test_client_import(self): from graph.client import FalkorDBClient assert FalkorDBClient is not None def test_client_instantiation(self): from graph.client import FalkorDBClient client = FalkorDBClient() assert client is not None class TestCypherBuilder: def test_cypher_builder_import(self): from graph.cypher_builder import CypherBuilder assert CypherBuilder is not None class TestGraphQueries: def test_client_query_method(self): from graph.client import FalkorDBClient client = FalkorDBClient() hasattr(client, 'query') or hasattr(client, 'execute')