aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter <peterhsaxton@gmail.com>2020-07-30 08:56:36 +0100
committerPeter <peterhsaxton@gmail.com>2020-07-30 08:56:36 +0100
commitff8b71ddca3b4fb98b2c4f0524d34baad1df02ef (patch)
tree557dbfe2d027640cf8eaeddb4011433812cf1dbf /test
downloadgleam_json-ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef.tar.gz
gleam_json-ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef.zip
initial commit
Diffstat (limited to 'test')
-rw-r--r--test/gleam_json_test.gleam7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/gleam_json_test.gleam b/test/gleam_json_test.gleam
new file mode 100644
index 0000000..d3b7633
--- /dev/null
+++ b/test/gleam_json_test.gleam
@@ -0,0 +1,7 @@
+import gleam_json
+import gleam/should
+
+pub fn hello_world_test() {
+ gleam_json.hello_world()
+ |> should.equal("Hello, from gleam_json!")
+}