You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
174 B
Plaintext
13 lines
174 B
Plaintext
2 months ago
|
import gleeunit
|
||
|
import gleeunit/should
|
||
|
|
||
|
pub fn main() {
|
||
|
gleeunit.main()
|
||
|
}
|
||
|
|
||
|
// gleeunit test functions end in `_test`
|
||
|
pub fn hello_world_test() {
|
||
|
1
|
||
|
|> should.equal(1)
|
||
|
}
|