[Bps-public-commit] r10455 - Text-Quoted/t

ruz at bestpractical.com ruz at bestpractical.com
Wed Jan 23 10:49:23 EST 2008


Author: ruz
Date: Wed Jan 23 10:49:22 2008
New Revision: 10455

Added:
   Text-Quoted/t/1.t

Log:
* return back 1.t I've deleted accidentally

Added: Text-Quoted/t/1.t
==============================================================================
--- (empty file)
+++ Text-Quoted/t/1.t	Wed Jan 23 10:49:22 2008
@@ -0,0 +1,60 @@
+# Before `make install' is performed this script should be runnable with
+# `make test'. After `make install' it should work as `perl 1.t'
+
+#########################
+
+# change 'tests => 1' to 'tests => last_test_to_print';
+
+use Test::More tests => 3;
+BEGIN { use_ok('Text::Quoted') };
+
+#########################
+
+# Insert your test code below, the Test::More module is use()ed here so read
+# its man page ( perldoc Test::More ) for help writing this test script.
+
+$a = <<EOF;
+> foo
+> # Bar
+> baz
+
+quux
+EOF
+
+is_deeply(extract($a),
+[[{text => 'foo',empty => '',quoter => '>',raw => '> foo'},
+  [{text => 'Bar',empty => '',quoter => '> #',raw => '> # Bar'}],
+  {text => 'baz',empty => '',quoter => '>',raw => '> baz'}
+ ],
+ {text => '',empty => '1',quoter => '',raw => ''},
+ {text => 'quux',empty => '',quoter => '',raw => 'quux'}],
+"Sample text is organized properly");
+
+$b = <<EOF;
+
+> foo
+> > > baz
+> > quux
+> quuux
+quuuux
+EOF
+
+$b_dump = 
+[
+      { text => '', empty => '1', quoter => '', raw => '' },
+      [
+        { text => 'foo', empty => '', quoter => '>', raw => '> foo' },
+        [
+          [
+            { text => 'baz', empty => '', quoter => '> > >',
+              raw => '> > > baz' }
+          ],
+          { text => 'quux', empty => '', quoter => '> >', raw => '> > quux' }
+        ],
+        { text => 'quuux', empty => '', quoter => '>', raw => '> quuux' }
+      ],
+      { text => 'quuuux', empty => '', quoter => '', raw => 'quuuux' }
+    ];
+
+
+is_deeply(extract($b), $b_dump, "Skipping levels works OK");



More information about the Bps-public-commit mailing list