diff options
author | Peter <peterhsaxton@gmail.com> | 2020-07-30 08:56:36 +0100 |
---|---|---|
committer | Peter <peterhsaxton@gmail.com> | 2020-07-30 08:56:36 +0100 |
commit | ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef (patch) | |
tree | 557dbfe2d027640cf8eaeddb4011433812cf1dbf /test | |
download | gleam_json-ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef.tar.gz gleam_json-ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef.zip |
initial commit
Diffstat (limited to 'test')
-rw-r--r-- | test/gleam_json_test.gleam | 7 |
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!") +} |