summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js-std/path-ordering.js
blob: c3d61d238cc359edf003835e845c577f07d7f681 (plain)
1
2
3
4
5
6
7
8
9
10
11
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' },
        { 'path': 'std::collections::hash_set::HashSet', 'name': 'get_or_insert_owned' },
        { 'path': 'std::collections::hash_map::HashMap', 'name': 'insert' },
    ],
};