()
| 46 | |
| 47 | #[test] |
| 48 | fn parses_valid_version() { |
| 49 | let output = "codspeed-memtrack 4.4.2"; |
| 50 | let version = parse_from_output(output).unwrap(); |
| 51 | assert_eq!(version, Version::new(4, 4, 2)); |
| 52 | } |
| 53 | |
| 54 | #[test] |
| 55 | fn parses_version_with_prerelease() { |
nothing calls this directly
no test coverage detected