use gfaR::{Node, Gfa}; // cargo test -- --nocapture #[test] fn it_adds_two() { let n: Node = Node { id: "dsadka".to_owned(), len: 10 , seq: "AAT".to_owned()}; // This is edge chase if there are not nodes in the path let f2 = "/home/svorbrugg_local/local_compile/panSV/graphs/testGraph.gfa"; let mut graph = Gfa::new(); graph.read_file(f2); assert_eq!(4, graph.paths.len()); assert_eq!(9, graph.nodes.len()); }