#!perl use strict; use warnings; use Test::More tests => 6; use_ok( 'Text::WikiFormat' ) or exit; my $wikitext =<.*?
  • indented|s, 'nested lists should start correctly' ); like( $htmltext, qr|indented list.*?
  • .*?|s, '... and end correctly' ); $wikitext =<\s*
  • 1
  • \s*
  • 2
      \s*
    • 2\.1
        \s*
      • 2\.1\.1
      • \s*
      \s*
    • \s*
    \s*
  • \s*
  • 3
  • \s* \s* |sx, 'nesting should be correct for multiple levels' ); like( $htmltext, qr|
  • 4<|s, 'spaces should work instead of tabs' ); like( $htmltext, qr|
  • 4
      \s*
    • 4.1
        \s*
      • 4.1.1
      • \s*
      • 4.1.2
      • \s*
      \s*
    • |sx, 'nesting should be correct for spaces too' );