()
| 98 | |
| 99 | #[test] |
| 100 | fn format_vector_array_works() { |
| 101 | let arr = format_vector_array(&[0.1, 0.2, 0.3]); |
| 102 | assert_eq!(arr, "ARRAY[0.1,0.2,0.3]"); |
| 103 | } |
| 104 | |
| 105 | #[test] |
| 106 | fn format_vector_array_empty() { |
nothing calls this directly
no test coverage detected