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
use std::fmt::Debug;


#[derive(Debug, PartialEq)]
pub enum Mark {
  Not,
  To,
}


impl Mark {
  pub fn is_assertion (&self) -> bool {
    *self == Mark::To
  }
}