MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_edges_from

Function test_edges_from

atomic-core/src/change/provenance_graph/tests.rs:415–427  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

413
414#[test]
415fn test_edges_from() {
416 let graph = sample_graph();
417
418 let from_goal = graph.edges_from("n-1");
419 assert_eq!(from_goal.len(), 2);
420 assert!(from_goal
421 .iter()
422 .all(|e| e.kind == ProvenanceEdgeKind::LedTo));
423
424 let from_commit = graph.edges_from("n-4");
425 assert_eq!(from_commit.len(), 1);
426 assert_eq!(from_commit[0].kind, ProvenanceEdgeKind::VerifiedBy);
427}
428
429#[test]
430fn test_edges_to() {

Callers

nothing calls this directly

Calls 2

sample_graphFunction · 0.85
edges_fromMethod · 0.80

Tested by

no test coverage detected