From a0b0a3c6a57097d56c5c471e5cb72bbde8198da8 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Tue, 8 Jan 2019 02:11:55 +0000 Subject: Implement message boxes using the dialog backend This patch adds a first dialog box type, message boxes, and a first backend, the dialog(1) tool. It does not yet address the problems of output handling and backend selection. --- tests/message.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/message.rs (limited to 'tests/message.rs') diff --git a/tests/message.rs b/tests/message.rs new file mode 100644 index 0000000..4b1f18c --- /dev/null +++ b/tests/message.rs @@ -0,0 +1,18 @@ +// Copyright (C) 2019 Robin Krahl +// SPDX-License-Identifier: MIT + +use std::io::Result; + +use dialog::DialogBox; + +#[test] +fn text() -> Result<()> { + dialog::Message::new("This is a message.").show() +} + +#[test] +fn text_title() -> Result<()> { + dialog::Message::new("This is a message.") + .title("And this is a title:") + .show() +} -- cgit v1.2.1