Add tests for crate exports ; add structure to imports/exports

This commit is contained in:
xmppftw xmppftw 2024-12-18 17:59:06 +01:00 committed by Link Mauve
commit 7991cef904
7 changed files with 77 additions and 32 deletions

View file

@ -293,3 +293,22 @@ pub mod fast;
/// XEP-0490: Message Displayed Synchronization
pub mod message_displayed;
#[cfg(test)]
mod tests {
#[test]
fn reexports() {
#[allow(unused_imports)]
use crate::blake2;
#[allow(unused_imports)]
use crate::jid;
#[allow(unused_imports)]
use crate::minidom;
#[allow(unused_imports)]
use crate::sha1;
#[allow(unused_imports)]
use crate::sha2;
#[allow(unused_imports)]
use crate::sha3;
}
}