about summary refs log tree commit diff
path: root/tests/rustdoc-js-std/path-ordering.js
blob: 4bfc6256052cadba65375a199d28f42172cc8849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const EXPECTED = [
    {
        query: 'hashset::insert',
        others: [
            // ensure hashset::insert comes first
            { 'path': 'std::collections::hash_set::HashSet', 'name': 'insert' },
            { 'path': 'std::collections::hash_set::HashSet', 'name': 'get_or_insert' },
            { 'path': 'std::collections::hash_set::HashSet', 'name': 'get_or_insert_with' },
        ],
    },
    {
        query: 'hash::insert',
        others: [
            // ensure hashset/hashmap::insert come first
            { 'path': 'std::collections::hash_map::HashMap', 'name': 'insert' },
            { 'path': 'std::collections::hash_set::HashSet', 'name': 'insert' },
        ],
    },
];