From a7ac240fc64705ae4fc656b9717b631e786c43b6 Mon Sep 17 00:00:00 2001 From: "Sam A. Horvath-Hunt" Date: Mon, 5 Jun 2023 20:57:50 +0100 Subject: [PATCH] Add failing test To validate the previous commit. --- src/de.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/de.rs b/src/de.rs index dfefa93..06c0eae 100644 --- a/src/de.rs +++ b/src/de.rs @@ -52,6 +52,11 @@ where mod tests { use super::*; + #[test] + fn test_intentional_failure() { + assert!(false); + } + #[test] fn test_only_true() { #[derive(Debug, PartialEq, Eq, serde::Deserialize)]