aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorQuinn Wilton <wilton@synopsys.com>2020-12-02 11:39:09 -0800
committerLouis Pilfold <louis@lpil.uk>2020-12-02 20:13:15 +0000
commit88090877348a4f0c84b3ef497bab98a9a1e39e23 (patch)
tree748a2f4b9e33981d304db697858aae26ad79af82 /test
parente3178fb8d056b2e55f0baa041be313d9c4bd1ff4 (diff)
downloadgleam_stdlib-88090877348a4f0c84b3ef497bab98a9a1e39e23.tar.gz
gleam_stdlib-88090877348a4f0c84b3ef497bab98a9a1e39e23.zip
Add bool.nor
Diffstat (limited to 'test')
-rw-r--r--test/gleam/bool_test.gleam14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/gleam/bool_test.gleam b/test/gleam/bool_test.gleam
index c2ef78b..ad47ea2 100644
--- a/test/gleam/bool_test.gleam
+++ b/test/gleam/bool_test.gleam
@@ -10,6 +10,20 @@ pub fn negate_test() {
|> should.be_true
}
+pub fn nor_test() {
+ bool.nor(False, False)
+ |> should.be_true
+
+ bool.nor(False, True)
+ |> should.be_false
+
+ bool.nor(True, False)
+ |> should.be_false
+
+ bool.nor(True, True)
+ |> should.be_false
+}
+
pub fn exclusive_or_test() {
bool.exclusive_or(True, True)
|> should.be_false