diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/eq.ur | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/eq.ur b/tests/eq.ur index 1a780a57..4f758e0f 100644 --- a/tests/eq.ur +++ b/tests/eq.ur @@ -1,4 +1,8 @@ fun main () : transaction page = return <xml><body> {txt _ (1 = 1)}, {txt _ (1 = 2)}<br/> - {txt _ (1 <> 1)}, {txt _ (1 <> 2)} + {txt _ (1 <> 1)}, {txt _ (1 <> 2)}<br/> + {txt _ (True = True)}, {txt _ (True = False)}<br/> + {txt _ (True <> True)}, {txt _ (True <> False)}<br/> + {txt _ ("A" = "A")}, {txt _ ("A" = "B")}<br/> + {txt _ ("A" <> "A")}, {txt _ ("A" <> "B")}<br/> </body></xml> |