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
use crate::core::matcher::{Matcher, Matcherable};


use std::fmt::Debug;


pub fn be_equal<V> (value: V) -> Matcherable<V>
where
  V: Clone + Debug + PartialEq
{
  Matcherable::new(value)
}