From 091e9db7adb2bf1fce8afa9d72b082f2acd3bb60 Mon Sep 17 00:00:00 2001 From: lewdum Date: Tue, 22 Oct 2024 19:05:56 -0300 Subject: [PATCH] remove tests for now --- gleam.toml | 1 - manifest.toml | 2 -- test/apkallone_test.gleam | 12 ------------ 3 files changed, 15 deletions(-) delete mode 100644 test/apkallone_test.gleam diff --git a/gleam.toml b/gleam.toml index 4d877dd..0871df9 100644 --- a/gleam.toml +++ b/gleam.toml @@ -19,4 +19,3 @@ gleam_json = ">= 2.0.0 and < 3.0.0" gleam_http = ">= 3.7.0 and < 4.0.0" [dev-dependencies] -gleeunit = ">= 1.0.0 and < 2.0.0" diff --git a/manifest.toml b/manifest.toml index 8905519..eeda8cb 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,6 @@ packages = [ { name = "gleam_httpc", version = "3.0.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_http", "gleam_stdlib"], otp_app = "gleam_httpc", source = "hex", outer_checksum = "091CDD2BEC8092E82707BEA03FB5205A2BBBDE4A2F551E3C069E13B8BC0C428E" }, { name = "gleam_json", version = "2.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "CB10B0E7BF44282FB25162F1A24C1A025F6B93E777CCF238C4017E4EEF2CDE97" }, { name = "gleam_stdlib", version = "0.40.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "86606B75A600BBD05E539EB59FABC6E307EEEA7B1E5865AFB6D980A93BCB2181" }, - { name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" }, ] [requirements] @@ -15,4 +14,3 @@ gleam_http = { version = ">= 3.7.0 and < 4.0.0" } gleam_httpc = { version = ">= 3.0.0 and < 4.0.0" } gleam_json = { version = ">= 2.0.0 and < 3.0.0" } gleam_stdlib = { version = ">= 0.34.0 and < 2.0.0" } -gleeunit = { version = ">= 1.0.0 and < 2.0.0" } diff --git a/test/apkallone_test.gleam b/test/apkallone_test.gleam deleted file mode 100644 index 3831e7a..0000000 --- a/test/apkallone_test.gleam +++ /dev/null @@ -1,12 +0,0 @@ -import gleeunit -import gleeunit/should - -pub fn main() { - gleeunit.main() -} - -// gleeunit test functions end in `_test` -pub fn hello_world_test() { - 1 - |> should.equal(1) -}