switcheroo/test/switcheroo_test.gleam
2025-04-29 18:19:33 -07:00

12 lines
181 B
Gleam

import gleeunit
import gleeunit/should
pub fn main() -> Nil {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
1
|> should.equal(1)
}