···13131414And then call the `discover_and_run_tests` function from your test main function.
15151616-```gleam
1616+```rust
1717// In test/yourapp_test.gleam
1818import gleeunit
1919···2525Now any public function with a name ending in `_test` in the `test` directory
2626will be found and run as a test.
27272828-```gleam
2828+```rust
2929pub fn the_universe_test() {
3030 assert 1 = 1
3131}