chiark / gitweb /
Move unused dependency to test deps
[nailing-cargo.git] / t / toml-test / valid / table-array-nest.t
index 4ed1f2100c66d3b1c7bbf580b946ab74fc7bf47c..b87f6eafa4ecb8cc82dd0fa9a042e653d1003edc 100644 (file)
@@ -2,6 +2,10 @@
 use utf8;
 use Test2::V0;
 use Data::Dumper;
+use DateTime;
+use DateTime::Format::RFC3339;
+use Math::BigInt;
+use Math::BigFloat;
 use TOML::Tiny;
 
 binmode STDIN,  ':encoding(UTF-8)';
@@ -10,7 +14,6 @@ binmode STDOUT, ':encoding(UTF-8)';
 my $expected1 = {
                'albums' => [
                              {
-                               'name' => 'Born to Run',
                                'songs' => [
                                             {
                                               'name' => 'Jungleland'
@@ -18,9 +21,11 @@ my $expected1 = {
                                             {
                                               'name' => 'Meeting Across the River'
                                             }
-                                          ]
+                                          ],
+                               'name' => 'Born to Run'
                              },
                              {
+                               'name' => 'Born in the USA',
                                'songs' => [
                                             {
                                               'name' => 'Glory Days'
@@ -28,8 +33,7 @@ my $expected1 = {
                                             {
                                               'name' => 'Dancing in the Dark'
                                             }
-                                          ],
-                               'name' => 'Born in the USA'
+                                          ]
                              }
                            ]
              };