forms_test.gleam 174 B

123456789101112
  1. import gleeunit
  2. import gleeunit/should
  3. pub fn main() {
  4. gleeunit.main()
  5. }
  6. // gleeunit test functions end in `_test`
  7. pub fn hello_world_test() {
  8. 1
  9. |> should.equal(1)
  10. }