| 200 | } |
| 201 | |
| 202 | QUrl comparableUpUrl(const QUrl& url) |
| 203 | { |
| 204 | QUrl ret = preserveWindowsDriveLetter(url, [&](const QUrl& url) { |
| 205 | return KIO::upUrl(url).adjusted(QUrl::RemovePassword); |
| 206 | }); |
| 207 | return ret.adjusted(QUrl::StripTrailingSlash); |
| 208 | } |
| 209 | |
| 210 | void TestPath::testPath() |
| 211 | { |
no test coverage detected