From 888d89e2ddd340413f65c155170f844f78b3649f Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 29 Apr 2021 16:18:18 +0200 Subject: [PATCH] temporarily disable broken test this test was added before the used NodeConfig schema was committed, cannot work... Signed-off-by: Thomas Lamprecht --- src/tools/config.rs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/tools/config.rs b/src/tools/config.rs index 499bd187..46e0cd61 100644 --- a/src/tools/config.rs +++ b/src/tools/config.rs @@ -149,23 +149,3 @@ fn object_to_writer(output: &mut dyn Write, object: &Object) -> Result<(), Error } Ok(()) } - -#[test] -fn test() { - // let's just reuse some schema we actually have available: - use crate::config::node::NodeConfig; - - const NODE_CONFIG: &str = "\ - acme: account=pebble\n\ - acmedomain0: test1.invalid.local,plugin=power\n\ - acmedomain1: test2.invalid.local\n\ - "; - - let data: NodeConfig = from_str(NODE_CONFIG, &NodeConfig::API_SCHEMA) - .expect("failed to parse simple node config"); - - let config = to_bytes(&data, &NodeConfig::API_SCHEMA) - .expect("failed to serialize node config"); - - assert_eq!(config, NODE_CONFIG.as_bytes()); -}