summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js/reexport.js
blob: 871e75d9b2b316167fd1f33868d2b60547916a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// exact-check

const QUERY = ['Subscriber', 'AnotherOne'];

const EXPECTED = [
    {
        'others': [
            { 'path': 'reexport::fmt', 'name': 'Subscriber' },
            { 'path': 'reexport', 'name': 'FmtSubscriber' },
        ],
    },
    {
        'others': [
            { 'path': 'reexport', 'name': 'AnotherOne' },
        ],
    },
];