aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/gleam/bool_test.gleam8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/gleam/bool_test.gleam b/test/gleam/bool_test.gleam
index 3edea25..17d8b12 100644
--- a/test/gleam/bool_test.gleam
+++ b/test/gleam/bool_test.gleam
@@ -115,3 +115,11 @@ pub fn to_int_test() {
bool.to_int(False)
|> should.equal(0)
}
+
+pub fn to_string_test() {
+ bool.to_string(True)
+ |> should.equal("True")
+
+ bool.to_string(False)
+ |> should.equal("False")
+}