expect

Macro expect 

Source
macro_rules! expect {
    [[$data:expr]] => { ... };
    [$data:expr] => { ... };
    [] => { ... };
    [[]] => { ... };
}
Expand description

Creates an instance of Expect from an expression returning bytes:

expect![[b"example"]];