()
| 93 | |
| 94 | #[test] |
| 95 | fn build_sql_minimal() { |
| 96 | let sql = build_pagerank_sql("social", None, None, None).unwrap(); |
| 97 | assert_eq!(sql, "GRAPH ALGO PAGERANK ON 'social'"); |
| 98 | } |
| 99 | |
| 100 | #[test] |
| 101 | fn build_sql_with_iterations_and_damping() { |
nothing calls this directly
no test coverage detected