From 910bfb1c01d7deb716708e6378fd46019d3c8135 Mon Sep 17 00:00:00 2001 From: fdai7374 Date: Mon, 30 Jan 2023 21:24:52 +0100 Subject: [PATCH] test: add quote test --- src/builtins/quote.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/builtins/quote.rs b/src/builtins/quote.rs index 5a739e2..19b47df 100644 --- a/src/builtins/quote.rs +++ b/src/builtins/quote.rs @@ -44,3 +44,13 @@ impl Builtin for Quote { Ok(()) } } + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_quote() { + assert_eq!(Quote.execute(&mut BuiltinConfig::new(), vec![]), Ok(())) + } +}