1)
'WikiText::Parser parsing ordered lists should recognize a multi-item, nested list (two levels)' FAILED
expected: "
    \n
  • foo
      \n
    • bar
    • \n
    \n
  • \n
\n", got: "
    \n
  • foo\n
      \n
    • bar
    • \n
    \n
  • \n
\n" (using ==) ./wiki_text_spec.rb:630: 2) 'WikiText::Parser parsing ordered lists should recognize a multi-item, nested list (three levels)' FAILED expected: "
    \n
  • foo
      \n
    • bar
        \n
      • baz
      • \n
      \n
    • \n
    \n
  • \n
\n", got: "
    \n
  • foo\n
      \n
    • bar\n
        \n
      • baz
      • \n
      \n
    • \n
    \n
  • \n
\n" (using ==) ./wiki_text_spec.rb:635: 3) 'WikiText::Parser parsing ordered lists should recognize lists in which nesting level increases and then is maintained' FAILED expected: "
    \n
  • foo
      \n
    • bar
    • \n
    • baz
    • \n
    \n
  • \n
\n", got: "
    \n
  • foo\n
      \n
    • bar
    • \n
    • baz
    • \n
    \n
  • \n
\n" (using ==) ./wiki_text_spec.rb:639: 4) 'WikiText::Parser parsing ordered lists should recognize lists in which nesting level increases and then decreases' FAILED expected: "
    \n
  • foo
      \n
    • bar
    • \n
    \n
  • \n
  • baz
  • \n
\n", got: "
    \n
  • foo\n
      \n
    • bar
    • \n
    \n
  • \n
  • baz
  • \n
\n" (using ==) ./wiki_text_spec.rb:643: 5) 'WikiText::Parser parsing ordered lists should recognized lists which contain nested ordered lists' FAILED expected: "
    \n
  • foo
      \n
    1. bar
    2. \n
    \n
  • \n
\n", got: "
    \n
  • foo\n
      \n
    1. bar
    2. \n
    \n
  • \n
\n" (using ==) ./wiki_text_spec.rb:672: