Documentation
1
2
3
4
5
6
7
8
9
extern crate expector;
use expector::*;

fn main() {

    let mut bees: Vec<f64> = Vec::new();
    bees.push(37.0);
    expect(bees).to(be_an_empty_vector());
}