Skip to content

Commit

Permalink
Update testcase for issue #59
Browse files Browse the repository at this point in the history
  • Loading branch information
subchen committed Dec 19, 2013
1 parent 088200c commit db5563e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/test/resources/template/op-if-test.jetx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
#if([1,2,3])
[1,2,3] = true
#end
#if({"a":123})
{"a":123} = true
#end
#if(!false)
!false = true
#end
Expand All @@ -19,9 +22,6 @@
#if(!"")
!"" = true
#end
#if(![1,2,3])
![1,2,3] = true
#end
#if(1>2 || "abc")
1>2 || "abc" = true
#end
3 changes: 2 additions & 1 deletion src/test/resources/template/op-if-test.jetx.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
true = true
123 = true
"abc" = true
[1,2,3] = true
{"a":123} = true
!false = true
!0 = true
!"" = true
![1,2,3] = true
1>2 || "abc" = true

0 comments on commit db5563e

Please sign in to comment.