Macro testing_table::assert_width

source ·
macro_rules! assert_width {
    ($table:expr, $expected:expr) => { ... };
}
Expand description

Assert a given table width.

§Example

assert_width!(Table::new([[1, 2, 3], [4, 5, 6]]), 10);