Files
setup-beam/test-projects/gleam_gleam/test/gleam_gleam_test.gleam
T
2022-01-12 14:26:44 +00:00

13 lines
174 B
Gleam

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