diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-21 09:52:52 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-21 09:52:52 -0400 |
commit | cbebf68dfc1e18c0477d20ea3b424ea2c97c8728 (patch) | |
tree | 3db88a4029e21443a572a90ddffdaed7eadbd04f /tests | |
parent | f750e27d0e16da032227dbc71ecb7c63f5b77bc7 (diff) |
Monoize eq_[bool|string]
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> |