chiark / gitweb /
v0.06
[nailing-cargo.git] / t / toml-test / invalid / table-array-malformed-empty.t
1 # File automatically generated from BurntSushi/toml-test
2 use utf8;
3 use Test2::V0;
4 use TOML::Tiny;
5
6 binmode STDIN,  ':encoding(UTF-8)';
7 binmode STDOUT, ':encoding(UTF-8)';
8
9 ok dies(sub{
10   from_toml(q{
11 [[]]
12 name = "Born to Run"
13
14   }, strict_arrays => 1);
15 }), 'strict_mode dies on table-array-malformed-empty';
16
17 done_testing;