aboutsummaryrefslogtreecommitdiff
path: root/test/str_test.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'test/str_test.gleam')
-rw-r--r--test/str_test.gleam5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/str_test.gleam b/test/str_test.gleam
index 13d781c..49e45e7 100644
--- a/test/str_test.gleam
+++ b/test/str_test.gleam
@@ -43,6 +43,11 @@ pub fn replace_test() {
|> expect:equal(_, "Gleam++Erlang++Elixir")
}
+pub fn append_test() {
+ str:append("Test", " Me")
+ |> expect:equal(_, "Test Me")
+}
+
pub fn from_int_test() {
123
|> str:from_int