chiark / gitweb /
Move unused dependency to test deps
[nailing-cargo.git] / t / toml-test / valid / raw-multiline-string.t
index 0d2496fbb1342ab9cea9eeedef5bcd5208054843..57574615878d6e764a0de431aa6e1f986bd3b0db 100644 (file)
@@ -2,19 +2,23 @@
 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)';
 binmode STDOUT, ':encoding(UTF-8)';
 
 my $expected1 = {
+               'oneline' => 'This string has a \' quote character.',
                'multiline' => 'This string
 has \' a quote character
 and more than
 one newline
 in it.',
-               'firstnl' => 'This string has a \' quote character.',
-               'oneline' => 'This string has a \' quote character.'
+               'firstnl' => 'This string has a \' quote character.'
              };