Check if BB binary exists at the expected path
()
| 66 | |
| 67 | /// Check if BB binary exists at the expected path |
| 68 | pub fn bb_binary_exists() -> bool { |
| 69 | let path = get_bb_binary_path(); |
| 70 | std::path::Path::new(&path).exists() |
| 71 | } |
| 72 | |
| 73 | /// Check if BB binary supports the msgpack API |
| 74 | pub fn bb_supports_msgpack() -> bool { |
nothing calls this directly
no test coverage detected