17 lines
333 B
JavaScript
17 lines
333 B
JavaScript
|
// exact-check
|
||
|
|
||
|
const EXPECTED = [
|
||
|
{
|
||
|
'query': 'Subscriber dostuff',
|
||
|
'others': [
|
||
|
{ 'path': 'foo::fmt::Subscriber', 'name': 'dostuff' },
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
'query': 'AnotherOne dostuff',
|
||
|
'others': [
|
||
|
{ 'path': 'foo::AnotherOne', 'name': 'dostuff' },
|
||
|
],
|
||
|
},
|
||
|
];
|