diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/display.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/display.rs b/tests/display.rs index c38355a..ca4fdd8 100644 --- a/tests/display.rs +++ b/tests/display.rs @@ -94,4 +94,10 @@ fn table() { \n\ [[test2]]\n\ test = [[2, 3], [\"foo\", \"bar\"]]\n"); + assert_eq!(Table(map! { + "test" => Array(vec![Integer(2)]), + "test2" => Integer(2) + }).to_string(), + "test = [2]\n\ + test2 = 2\n"); } |