From 383b6f52aa91d48720422b8049bcfc2a4aefbb31 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 18 Nov 2024 07:06:16 +0000 Subject: [PATCH] Replace the test `NoCallbacks` with the library version --- age/src/plugin.rs | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/age/src/plugin.rs b/age/src/plugin.rs index 98f11d1..f38ec0c 100644 --- a/age/src/plugin.rs +++ b/age/src/plugin.rs @@ -736,7 +736,7 @@ impl crate::Identity for IdentityPluginV1 { #[cfg(test)] mod tests { - use crate::{Callbacks, DecryptError, EncryptError}; + use crate::{DecryptError, EncryptError, NoCallbacks}; use super::{ Identity, IdentityPluginV1, Recipient, RecipientPluginV1, PLUGIN_IDENTITY_PREFIX, @@ -745,21 +745,6 @@ mod tests { const INVALID_PLUGIN_NAME: &str = "foobar/../../../../../../../usr/bin/echo"; - #[derive(Clone)] - struct NoCallbacks; - impl Callbacks for NoCallbacks { - fn display_message(&self, _: &str) {} - fn confirm(&self, _: &str, _: &str, _: Option<&str>) -> Option { - None - } - fn request_public_string(&self, _: &str) -> Option { - None - } - fn request_passphrase(&self, _: &str) -> Option { - None - } - } - #[test] fn default_for_plugin() { assert_eq!(