aboutsummaryrefslogtreecommitdiff
path: root/test/wechat_dev_tools_test.gleam
blob: 3831e7a97a31f5a996c5891c29c524df8dd397ce (plain)
1
2
3
4
5
6
7
8
9
10
11
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)
}