summaryrefslogtreecommitdiff
path: root/tests/eq.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-10-21 09:52:52 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-10-21 09:52:52 -0400
commitcbebf68dfc1e18c0477d20ea3b424ea2c97c8728 (patch)
tree3db88a4029e21443a572a90ddffdaed7eadbd04f /tests/eq.ur
parentf750e27d0e16da032227dbc71ecb7c63f5b77bc7 (diff)
Monoize eq_[bool|string]
Diffstat (limited to 'tests/eq.ur')
-rw-r--r--tests/eq.ur6
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>