From bf87428887ebd44846d4ec9bacdd2a14d3e2bab1 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Thu, 14 Dec 2017 17:29:09 -0800 Subject: [PATCH] well...almost done with engine options --- tests/lib.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/lib.rs b/tests/lib.rs index 200ab29..e0265c7 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -92,6 +92,13 @@ fn engine_option_string() { option_data: option_data1, }; - let expected = "option name hash type spin default 1 min 1 max 128"; + let expected = "option name hash type spin default 1 min 1 max 128\n"; assert_eq!(o.option_string(), expected); } + +#[test] +fn send_available_engine_options() { + // This should send two to three options and check the string in the + // buffer to make sure it's correct. + assert_eq!(true, false); +}