Export data should include a 'flows' key (list, possibly empty).
(store_with_data)
| 201 | |
| 202 | |
| 203 | def 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 | |
| 212 | def test_export_includes_communities(store_with_data): |
nothing calls this directly
no test coverage detected