rust/tests/rustdoc-js/path-ordering.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
462 B
JavaScript
Raw Normal View History

2022-05-10 02:46:24 +08:00
// exact-check
const EXPECTED = {
'query': 'bbbbbb::ccccccc',
2022-05-10 02:46:24 +08:00
'others': [
// `ccccccc` is an exact match for all three of these.
// However `b` is a closer match for `bb` than for any
// of the others, so it ought to go first.
{ 'path': 'path_ordering::bbbbbb', 'name': 'Ccccccc' },
{ 'path': 'path_ordering::abbbbb', 'name': 'Ccccccc' },
{ 'path': 'path_ordering::dbbbbb', 'name': 'Ccccccc' },
2022-05-10 02:46:24 +08:00
],
};