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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
use self::fluid::core::prelude::*;
use crate as fluid;
use std::ops::Not;

/// Used to check if a result is an error.
#[derive(Debug, Drop)]
pub struct Boolean {
    should: ShouldImpl<bool>,
}

impl AssertionImpl for Boolean {
    type Left = bool;

    fn failure_message(&mut self) -> Option<String> {
        let left_dbg = self.should.left_dbg();
        let truthness = self.should.truthness();

        if self.should.left.as_ref()? != &truthness {
            let message = if let Some(stringified) = self.should.stringified() {
                format!(
                    "\t{} is {}\n\
                     \tbut it should{}.",
                    stringified,
                    left_dbg,
                    truthness.str()
                )
            } else {
                format!("\t{} is not {}.", left_dbg, truthness)
            };
            Some(message)
        } else {
            None
        }
    }

    fn consume_as_should(mut self) -> ShouldImpl<Self::Left> {
        self.should.take()
    }

    fn should_mut(&mut self) -> &mut ShouldImpl<Self::Left> {
        &mut self.should
    }
}

impl Should<bool> {
    /// Checks if a bool is true.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use fluid::prelude::*;
    /// let is_ok = true;
    /// is_ok.should().be_true();
    /// ```
    pub fn be_true(self) -> ChainableAssert<Boolean> {
        let implem = Boolean {
            should: self.into(),
        };

        ChainableAssert(implem)
    }

    /// Checks if a bool is false.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use fluid::prelude::*;
    /// let is_ok = false;
    /// is_ok.should().be_false();
    /// ```
    pub fn be_false(self) -> ChainableAssert<Boolean> {
        let implem = Boolean {
            should: self.not().into(),
        };

        ChainableAssert(implem)
    }
}