diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 17:44:08 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 17:44:08 -0400 |
| commit | c941b9a3325228eba404455afea7ccea0da45095 (patch) | |
| tree | d4ca88c6848ac2e6ceee635bb87add87ba6d2322 /test/import.tm | |
| parent | 1cec086a6034ad546977cae7aeaf4bb876d21970 (diff) | |
Fix tests
Diffstat (limited to 'test/import.tm')
| -rw-r--r-- | test/import.tm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/import.tm b/test/import.tm index edae08f6..cb642ac6 100644 --- a/test/import.tm +++ b/test/import.tm @@ -9,12 +9,9 @@ func returns_imported_type(->ImportedType) func main() >> empty : [vectors.Vec2] - >> returns_vec() - = Vec2(x=1, y=2) + assert returns_vec() == Vec2(x=1, y=2) >> imported : [ImportedType] - >> returns_imported_type() - = ImportedType("Hello") + assert returns_imported_type() == ImportedType("Hello") - >> needs_initializing # imported from ./use_import.tm - = 999999999999999999 + assert needs_initializing == 999999999999999999 |
