Skip to content

Commit

Permalink
add tests which explain #68's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gfx committed Mar 3, 2014
1 parent 89a9aea commit 0d8ec7b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions t/15_mixed_html_tag.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
use utf8;
use Test::Base;
use Text::Md2Inao::TestHelper;

plan tests => 1 * blocks;
run_is in => 'expected';

__END__
=== multi-line HTML tags
--- in md2inao
foo
bar
<div class="undefined">baz</div>
--- expected
foobar<div class="undefined">baz</div>
=== multi-line HTML tags with empty lines
--- in md2inao
foo
bar
<div class="undefined">baz</div>
--- expected chomp
foo
bar
<div class="undefined">baz</div>

0 comments on commit 0d8ec7b

Please sign in to comment.