Skip to content

Commit

Permalink
Added testcase for issue 73
Browse files Browse the repository at this point in the history
  • Loading branch information
chbloemer committed Apr 18, 2016
1 parent 1d40b69 commit c01bf4d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/test/resources/issues/69.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<script>
each component in components
component.name

</script>
<script>FooBar
</script>
2 changes: 0 additions & 2 deletions src/test/resources/issues/69.jade
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
script
each component in components
component.name

script.
each component in components
component.name

script
each component in components
=component.name
2 changes: 2 additions & 0 deletions src/test/resources/issues/73.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<a href="http://www.xyz.com"></a><a href="http://www.abc.com"><span class="me-home">
<abc></abc></span></a>
8 changes: 8 additions & 0 deletions src/test/resources/issues/73.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-var crumbs = [{"url":"http://www.xyz.com","name":"xyz"},{"url":"http://www.abc.com","name":"abc"}]
each crumb, i in crumbs
if i == 1
a(href="#{crumb.url}")
span.me-home
#{crumb.name}
else
a(href="#{crumb.url}")

0 comments on commit c01bf4d

Please sign in to comment.