chiark / gitweb /
v0.06
[nailing-cargo.git] / t / toml-test / invalid / key-after-table.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 [error] this = "should not be here"
12
13   }, strict_arrays => 1);
14 }), 'strict_mode dies on key-after-table';
15
16 done_testing;