pine/test/timber_test.gleam

12 lines
170 B
Plaintext
Raw Permalink Normal View History

2024-07-30 04:40:16 +00:00
import gleeunit
import gleeunit/should
pub fn main() {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
should.equal(1, 1)
}