aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-01-08 02:55:11 +0000
committerRobin Krahl <robin.krahl@ireas.org>2019-01-08 04:54:14 +0100
commit1c76a540d647f351e27498e6f2135ff404853693 (patch)
tree0ad7877f445e396d8d3043f75b52aa18dccd4eec /tests
parent9fc28c2099b50484a4b3154f64f764904d57334e (diff)
downloaddialog-rs-1c76a540d647f351e27498e6f2135ff404853693.tar.gz
dialog-rs-1c76a540d647f351e27498e6f2135ff404853693.tar.bz2
Move tests/ to examples/
So far it is hard to write unit tests for this crate as we don’t have much logic. The existing tests are usage examples, therefore they are moved to the examples directory. They can be run with `cargo run --example <name>`.
Diffstat (limited to 'tests')
-rw-r--r--tests/dialog.rs33
-rw-r--r--tests/message.rs18
2 files changed, 0 insertions, 51 deletions
diff --git a/tests/dialog.rs b/tests/dialog.rs
deleted file mode 100644
index 4c671f8..0000000
--- a/tests/dialog.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
-// SPDX-License-Identifier: MIT
-
-use std::io::Result;
-
-use dialog::backends;
-use dialog::DialogBox;
-
-#[test]
-fn message() -> Result<()> {
- dialog::Message::new("This is a message.")
- .title("And this is a title:")
- .show_with(&backends::Dialog::new())
-}
-
-#[test]
-fn backtitle() -> Result<()> {
- let mut backend = backends::Dialog::new();
- backend.set_backtitle("Backtitle");
- dialog::Message::new("This is a message.")
- .title("And this is a title:")
- .show_with(&backend)
-}
-
-#[test]
-fn size() -> Result<()> {
- let mut backend = backends::Dialog::new();
- backend.set_width(100);
- backend.set_height(10);
- dialog::Message::new("This is a message.")
- .title("And this is a title:")
- .show_with(&backend)
-}
diff --git a/tests/message.rs b/tests/message.rs
deleted file mode 100644
index 4b1f18c..0000000
--- a/tests/message.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
-// 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()
-}