qutonium 0.1.6

simplify unit testing with a functional testing framework 📈
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::core::matcher::{Matcher, Matcherable};


pub fn be_boolean () -> Matcherable<bool> {
  Matcherable::new(true)
}


pub fn be_false () -> Matcherable<bool> {
  Matcherable::new(false)
}


pub fn be_true () -> Matcherable<bool> {
  Matcherable::new(true)
}