Marko v3: Moved over more pending tests

This commit is contained in:
Patrick Steele-Idem 2016-01-18 11:03:30 -07:00
parent 7f6e9f65fa
commit d860dfa528
11 changed files with 3 additions and 5 deletions

View File

@ -1 +0,0 @@
<script>document.write('<div>Hello $data.name</div>');</script>

View File

@ -1,4 +0,0 @@
<var name="name" value="data.name"/>
<var name="count" value="data.count"/>
${name != null ? "Hello ${name.toUpperCase()}! You have $count new messages." : null}

View File

@ -0,0 +1 @@
<script>document.write('<div>Hello ${data.name}</div>');</script>

View File

@ -0,0 +1,2 @@
<var name=data.name count=data.count/>
${name != null ? "Hello ${name.toUpperCase()}! You have ${count} new messages." : null}