mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-06-14 06:21:09 +00:00
Ignore macro doc comment tests
This commit is contained in:
@@ -2,13 +2,13 @@
|
|||||||
///
|
///
|
||||||
/// For example, the macro invocation seen below:
|
/// For example, the macro invocation seen below:
|
||||||
///
|
///
|
||||||
/// ```rust,no_run
|
/// ```rust,ignore
|
||||||
/// define_wrapper_type!(CaseId => usize);
|
/// define_wrapper_type!(CaseId => usize);
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
/// Would define a wrapper type that looks like the following:
|
/// Would define a wrapper type that looks like the following:
|
||||||
///
|
///
|
||||||
/// ```rust,no_run
|
/// ```rust,ignore
|
||||||
/// pub struct CaseId(usize);
|
/// pub struct CaseId(usize);
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
///
|
///
|
||||||
/// Take the following as an example:
|
/// Take the following as an example:
|
||||||
///
|
///
|
||||||
/// ```rust,no_run
|
/// ```rust,ignore
|
||||||
/// struct State {
|
/// struct State {
|
||||||
/// contracts: HashMap<usize, HashMap<String, Vec<u8>>>
|
/// contracts: HashMap<usize, HashMap<String, Vec<u8>>>
|
||||||
/// }
|
/// }
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
/// in that the types tell us what the code is referring to. The above code is
|
/// in that the types tell us what the code is referring to. The above code is
|
||||||
/// transformed into
|
/// transformed into
|
||||||
///
|
///
|
||||||
/// ```rust,no_run
|
/// ```rust,ignore
|
||||||
/// struct State {
|
/// struct State {
|
||||||
/// contracts: HashMap<CaseId, HashMap<ContractName, ContractByteCode>>
|
/// contracts: HashMap<CaseId, HashMap<ContractName, ContractByteCode>>
|
||||||
/// }
|
/// }
|
||||||
|
|||||||
Reference in New Issue
Block a user