MCPcopy Index your code
hub / github.com/tirth8205/code-review-graph / test_export_includes_flows

Function test_export_includes_flows

tests/test_visualization.py:203–209  ·  view source on GitHub ↗

Export data should include a 'flows' key (list, possibly empty).

(store_with_data)

Source from the content-addressed store, hash-verified

201
202
203def test_export_includes_flows(store_with_data):
204 """Export data should include a 'flows' key (list, possibly empty)."""
205 from code_review_graph.visualization import export_graph_data
206
207 data = export_graph_data(store_with_data)
208 assert "flows" in data
209 assert isinstance(data["flows"], list)
210
211
212def test_export_includes_communities(store_with_data):

Callers

nothing calls this directly

Calls 1

export_graph_dataFunction · 0.90

Tested by

no test coverage detected