this repo has no description
1import gleeunit
2import gleeunit/should
3import vars/internal
4
5pub fn main() {
6 gleeunit.main()
7}
8
9// gleeunit test functions end in `_test`
10pub fn hello_world_test() {
11 1
12 |> should.equal(1)
13}
14
15pub fn format_pair_test() {
16 internal.format_pair("hello", "world")
17 |> should.equal("hello=world")
18}