()
| 107 | |
| 108 | #[test] |
| 109 | fn test_parse_invalid_json() { |
| 110 | let ws = TestWorkspace::new("not valid json {{{"); |
| 111 | let (mappings, _vendor_dir) = parse_composer_json(ws.root()); |
| 112 | assert!(mappings.is_empty()); |
| 113 | } |
| 114 | |
| 115 | #[test] |
| 116 | fn test_parse_no_psr4_section() { |
nothing calls this directly
no test coverage detected