aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/gleam/io_test.gleam11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/gleam/io_test.gleam b/test/gleam/io_test.gleam
deleted file mode 100644
index 6408127..0000000
--- a/test/gleam/io_test.gleam
+++ /dev/null
@@ -1,11 +0,0 @@
-if erlang {
- import gleam/io
- import gleam/should
-
- pub fn debug_test() {
- "io.debug-test"
- // prints to stdout, but EUnit will suppress that:
- |> io.debug()
- |> should.equal("io.debug-test")
- }
-}