rustdoc-json: Fix test so it actuall checks things

After #111427, no item has a `kind` field, so these assertions could never
fail. Instead, assert that those two items arn't present.
This commit is contained in:
Alona Enraght-Moony 2023-11-09 12:13:16 +00:00
parent 287ae4db75
commit 22e1576a12
1 changed files with 3 additions and 2 deletions

View File

@ -2,11 +2,12 @@
mod repeat_n {
#[doc(hidden)]
/// not here
pub struct RepeatN {}
}
/// not here
pub use repeat_n::RepeatN;
// @count "$.index[*][?(@.name=='pub_use_doc_hidden')].inner.items[*]" 0
// @!has "$.index[*][?(@.kind=='struct')]"
// @!has "$.index[*][?(@.kind=='import')]"
// @!has "$.index[*][?(@.docs == 'not here')]"