summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-04-30 07:43:45 +0200
committerDon Stewart <dons@cse.unsw.edu.au>2007-04-30 07:43:45 +0200
commitcab40b32e3a0bfe3e78b12807352dc9635329c5d (patch)
tree0a6c15f150f8346bde15f1c7370c38db2613f62f /tests
parente3c16e0900d65e70d68f6a11f67ade5f74ad66d5 (diff)
downloadmetatile-cab40b32e3a0bfe3e78b12807352dc9635329c5d.tar
metatile-cab40b32e3a0bfe3e78b12807352dc9635329c5d.zip
push is idempotent
darcs-hash:20070430054345-9c5c1-98af87adafacc002e4df6e22ea42ac97f40b4399
Diffstat (limited to 'tests')
-rw-r--r--tests/Properties.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Properties.hs b/tests/Properties.hs
index 55568c8..d8b0a48 100644
--- a/tests/Properties.hs
+++ b/tests/Properties.hs
@@ -67,7 +67,6 @@ prop_empty n m = n > 0 && m > 0 ==> all null (M.elems (stacks x))
prop_empty_current n m = n > 0 && m > 0 ==> current x == 0
where x = empty n m :: T
-
prop_member1 i n m = n > 0 && m > 0 ==> member i (push i x)
where x = empty n m :: T
@@ -85,6 +84,8 @@ prop_currentpush is n m = n > 0 ==>
js = nub is
x = empty n m :: T
+prop_push_idem i (x :: T) = push i x == push i (push i x)
+
prop_pushpeek x is = not (null is) ==> fromJust (peek (foldr push x is)) == head is
where _ = x :: T
@@ -292,6 +293,7 @@ main = do
,("height/push ", mytest prop_currentpush)
,("push/peek ", mytest prop_pushpeek)
,("push is local" , mytest prop_push_local)
+ ,("idempotent push" , mytest prop_push_idem)
,("peek/peekStack" , mytest prop_peek_peekStack)
,("not . peek/peekStack", mytest prop_notpeek_peekStack)