in Sources/DDMock/DDMock.swift [143:150]
func mockPath(request: URLRequest) -> String? {
if let url = request.url,
let method = request.httpMethod {
return mockPath(path: url.path, method: method)
} else {
return nil
}
}