diff options
author | Louis Pilfold <louis@lpil.uk> | 2022-12-18 13:24:58 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-12-18 13:24:58 +0000 |
commit | 33d4a09bcd719f6e18f85451987897827a7c73ec (patch) | |
tree | b251a3b73cb24bc346bea02445316a6800daab7c /test | |
parent | 037a393ade4ee0378db16fa01386a05130f1a1e3 (diff) | |
download | gleam_stdlib-33d4a09bcd719f6e18f85451987897827a7c73ec.tar.gz gleam_stdlib-33d4a09bcd719f6e18f85451987897827a7c73ec.zip |
Remove io test
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam/io_test.gleam | 11 |
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") - } -} |