chiark / gitweb /
Add 'TOML-Tiny/' from commit 'dab92c92905923c50929c14cc59adadff5b9eedf'
[nailing-cargo.git] / TOML-Tiny / t / toml-test / invalid / table-nested-brackets-close.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 [a]b]
12 zyx = 42
13
14   }, strict_arrays => 1);
15 }), 'strict_mode dies on table-nested-brackets-close';
16
17 done_testing;