12 lines
170 B
Plaintext
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)
|
|
}
|