-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/rustdoc-json: Rewrite tests no not use
#![no_core]
.
- Loading branch information
1 parent
0875f45
commit 434b69a
Showing
5 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
tests/rustdoc-json/impls/issue-112852-dangling-trait-impl-id.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
#![feature(no_core)] | ||
#![no_core] | ||
|
||
// @count "$.index[*][?(@.inner.impl)]" 1 | ||
// @!has "$.index[*][?(@.name == 'HiddenPubStruct')]" | ||
// @has "$.index[*][?(@.name == 'NotHiddenPubStruct')]" | ||
// @has "$.index[*][?(@.name=='PubTrait')]" | ||
pub trait PubTrait {} | ||
|
||
#[doc(hidden)] | ||
pub mod hidden { | ||
// @!has "$.index[*][?(@.name == 'HiddenPubStruct')]" | ||
pub struct HiddenPubStruct; | ||
|
||
// @!has "$.index[*][?(@.docs == 'Not Here')]" | ||
/// Not Here | ||
impl crate::PubTrait for HiddenPubStruct {} | ||
} | ||
|
||
pub mod not_hidden { | ||
// @has "$.index[*][?(@.name == 'NotHiddenPubStruct')]" | ||
pub struct NotHiddenPubStruct; | ||
|
||
// @has "$.index[*][?(@.docs == 'Here')]" | ||
/// Here | ||
impl crate::PubTrait for NotHiddenPubStruct {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
#![feature(no_core)] | ||
#![no_core] | ||
|
||
// @set wham = "$.index[*][?(@.name=='Wham')].id" | ||
// @count "$.index[*][?(@.name=='Wham')].inner.trait.implementations[*]" 1 | ||
// @set gmWham = "$.index[*][?(@.name=='Wham')].inner.trait.implementations[0]" | ||
pub trait Wham {} | ||
|
||
// @count "$.index[*][?(@.name=='GeorgeMichael')].inner.struct.impls[*]" 1 | ||
// @is "$.index[*][?(@.name=='GeorgeMichael')].inner.struct.impls[0]" $gmWham | ||
// @set gm = "$.index[*][?(@.name=='Wham')].id" | ||
|
||
// jsonpath_lib isnt expressive enough (for now) to get the "impl" item, so we | ||
// just check it isn't pointing to the type, but when you port to jsondocck-ng | ||
// check what the impl item is | ||
// @!is "$.index[*][?(@.name=='Wham')].inner.trait.implementations[0]" $gm | ||
pub struct GeorgeMichael {} | ||
|
||
/// Wham for George Michael | ||
impl Wham for GeorgeMichael {} | ||
|
||
// Find IDs. | ||
// @set wham = "$.index[*][?(@.name=='Wham')].id" | ||
// @set gmWham = "$.index[*][?(@.docs=='Wham for George Michael')].id" | ||
// @set gm = "$.index[*][?(@.name=='GeorgeMichael')].id" | ||
|
||
// Both struct and trait point to impl. | ||
// @has "$.index[*][?(@.name=='GeorgeMichael')].inner.struct.impls[*]" $gmWham | ||
// @is "$.index[*][?(@.name=='Wham')].inner.trait.implementations[*]" $gmWham | ||
|
||
// Impl points to both struct and trait. | ||
// @is "$.index[*][?(@.docs == 'Wham for George Michael')].inner.impl.trait.id" $wham | ||
// @is "$.index[*][?(@.docs == 'Wham for George Michael')].inner.impl.for.resolved_path.id" $gm |