star_rss/test/star_rss_test.gleam
2024-09-01 21:06:51 -05:00

13 lines
174 B
Plaintext

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