diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-10 20:56:07 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-12 19:30:42 +0200 |
commit | 9f488411284608260cf5b449f2bcc87d35d0a18d (patch) | |
tree | 9861d8c485c8231208d486c7c45a9be9aebd0b82 /test/script/parser.et | |
parent | 113afd3170557d5eeeefb428c5b6ff22450845ea (diff) |
Fix parser indentation check after ‘export’
Diffstat (limited to 'test/script/parser.et')
-rw-r--r-- | test/script/parser.et | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/script/parser.et b/test/script/parser.et index ee99989..554e345 100644 --- a/test/script/parser.et +++ b/test/script/parser.et @@ -1,7 +1,13 @@ module parser -test ModuleNotFound: +asset scripts: + path: ../asset/parser + +test Parser: spawn as p with p: send "load non-existing-file.et" expect /load-failed file-not-found .*/ + + send "load ${scripts.path}/indent.et" + expect /load-done/ |