initial commit
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
Martijn Remmen
2024-07-13 11:28:36 +02:00
commit 0c60a58779
9 changed files with 980 additions and 0 deletions

12
test/app_test.gleam Normal file
View File

@ -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)
}