aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkaiwu <kaiwu2004@gmail.com>2024-07-12 11:33:00 +0800
committerkaiwu <kaiwu2004@gmail.com>2024-07-12 11:33:00 +0800
commitcdcdc58d001d87e8430e1a4818252d3ce18daf2b (patch)
tree6ce6ed876a370ba9b3ae2efe914565cd79fe4098 /test
downloadwechat_dev_tools-cdcdc58d001d87e8430e1a4818252d3ce18daf2b.tar.gz
wechat_dev_tools-cdcdc58d001d87e8430e1a4818252d3ce18daf2b.zip
git init
Diffstat (limited to 'test')
-rw-r--r--test/wechat_dev_tools_test.gleam12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/wechat_dev_tools_test.gleam b/test/wechat_dev_tools_test.gleam
new file mode 100644
index 0000000..3831e7a
--- /dev/null
+++ b/test/wechat_dev_tools_test.gleam
@@ -0,0 +1,12 @@
+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)
+}