aboutsummaryrefslogtreecommitdiff
path: root/tests/dialog.rs
blob: 4c671f8921abc08b36ecf26565145f40d3c742bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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)
}