| 1 | const self_file = $embed_file(@FILE) |
| 2 | |
| 3 | fn test_self_file() { |
| 4 | source := self_file.to_string() |
| 5 | assert source.contains('self_file.to_string') |
| 6 | assert source.contains('fn test_self_file() {') |
| 7 | assert source.split_into_lines().len > @LINE.int() |
| 8 | } |
| 9 | |