File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -249,6 +249,14 @@ pub extern crate sled;
249
249
#[ cfg( feature = "sqlite" ) ]
250
250
pub extern crate rusqlite;
251
251
252
+ // We should consider putting this under a feature flag but we need the macro in doctests so we need
253
+ // to wait until https://github.com/rust-lang/rust/issues/67295 is fixed.
254
+ //
255
+ // Stuff in here is too rough to document atm
256
+ #[ doc( hidden) ]
257
+ #[ macro_use]
258
+ pub mod testutils;
259
+
252
260
#[ allow( unused_imports) ]
253
261
#[ macro_use]
254
262
pub ( crate ) mod error;
@@ -277,10 +285,3 @@ pub use wallet::Wallet;
277
285
pub fn version ( ) -> & ' static str {
278
286
env ! ( "CARGO_PKG_VERSION" , "unknown" )
279
287
}
280
-
281
- // We should consider putting this under a feature flag but we need the macro in doctests so we need
282
- // to wait until https://github.com/rust-lang/rust/issues/67295 is fixed.
283
- //
284
- // Stuff in here is too rough to document atm
285
- #[ doc( hidden) ]
286
- pub mod testutils;
Original file line number Diff line number Diff line change @@ -267,3 +267,5 @@ macro_rules! testutils {
267
267
( external, internal)
268
268
} )
269
269
}
270
+
271
+ pub use testutils;
You can’t perform that action at this time.
0 commit comments