diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/jsonTest.ur | 6 | ||||
-rw-r--r-- | tests/jsonTest.urp | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/jsonTest.ur b/tests/jsonTest.ur new file mode 100644 index 00000000..97898de8 --- /dev/null +++ b/tests/jsonTest.ur @@ -0,0 +1,6 @@ +open Json + +fun main () : transaction page = return <xml><body> + {[fromJson "[1, 2, 3]" : list int]}<br/> + {[toJson ("hi" :: "bye\"" :: "hehe" :: [])]} +</body></xml> diff --git a/tests/jsonTest.urp b/tests/jsonTest.urp new file mode 100644 index 00000000..0b606fa3 --- /dev/null +++ b/tests/jsonTest.urp @@ -0,0 +1,7 @@ +rewrite all JsonTest/* + +$/char +$/string +$/list +$/json +jsonTest |