Update rustdoc search test to check !
This commit is contained in:
parent
45cdb2be10
commit
4ea149905b
3 changed files with 135 additions and 1 deletions
|
@ -1,4 +1,10 @@
|
|||
const QUERY = ['-> F<P>', '-> P', '->,a', 'aaaaa->a'];
|
||||
const QUERY = [
|
||||
"-> F<P>",
|
||||
"-> P",
|
||||
"->,a",
|
||||
"aaaaa->a",
|
||||
"-> !",
|
||||
];
|
||||
|
||||
const PARSED = [
|
||||
{
|
||||
|
@ -75,4 +81,19 @@ const PARSED = [
|
|||
userQuery: "aaaaa->a",
|
||||
error: null,
|
||||
},
|
||||
{
|
||||
elems: [],
|
||||
foundElems: 1,
|
||||
original: "-> !",
|
||||
returned: [{
|
||||
name: "!",
|
||||
fullPath: ["!"],
|
||||
pathWithoutLast: [],
|
||||
pathLast: "!",
|
||||
generics: [],
|
||||
}],
|
||||
typeFilter: -1,
|
||||
userQuery: "-> !",
|
||||
error: null,
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue