pine/test/pine_test.gleam
wqtt 23e4937638
Some checks failed
test / test (push) Failing after 32s
chore!(project): use internal directory
2024-07-30 00:56:34 -04:00

12 lines
170 B
Plaintext

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)
}