summaryrefslogtreecommitdiff
path: root/test/files/run/hashsetremove.check
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-01-04 19:41:00 -0800
committerJames Iry <jamesiry@gmail.com>2013-01-04 19:41:00 -0800
commitaffa98fa54893830b88a9ebebd5d29740f10114c (patch)
tree094b796e1b4c5bac5a806848fd82a4ba00c15408 /test/files/run/hashsetremove.check
parentb571637c2dbb20208543520f5802fe4de5115616 (diff)
downloadscala-affa98fa54893830b88a9ebebd5d29740f10114c.tar.gz
scala-affa98fa54893830b88a9ebebd5d29740f10114c.tar.bz2
scala-affa98fa54893830b88a9ebebd5d29740f10114c.zip
SI-6916 makes FlatHashTable#remove a Boolean not Option[A]
Makes FlatHashTable#remove return a boolean instead of Option[A]. Updates HashSet accordingly. Adds a test to make sure remove works as advertised.
Diffstat (limited to 'test/files/run/hashsetremove.check')
-rw-r--r--test/files/run/hashsetremove.check6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/hashsetremove.check b/test/files/run/hashsetremove.check
new file mode 100644
index 0000000000..8de9826895
--- /dev/null
+++ b/test/files/run/hashsetremove.check
@@ -0,0 +1,6 @@
+remove 0 should be false, was false
+contains 1 should be true, was true
+remove 1 should be true, was true
+contains 1 should be false, was false
+remove 1 should be false, was false
+contains 1 should be false, was false