about summary refs log tree commit diff
path: root/tests/lang.scm
diff options
context:
space:
mode:
authorArun Isaac2026-06-25 17:19:39 +0100
committerArun Isaac2026-06-26 01:39:25 +0100
commit7db773fdb71b15353e9c15c908867d308b887a7b (patch)
treedc8cbef825748b88c47425601903a115ef01adfc /tests/lang.scm
parent3c4a04a11589c630a9601ecc3ed418424724eb1e (diff)
downloadccwl-7db773fdb71b15353e9c15c908867d308b887a7b.tar.gz
ccwl-7db773fdb71b15353e9c15c908867d308b887a7b.tar.lz
ccwl-7db773fdb71b15353e9c15c908867d308b887a7b.zip
lang: Raise &ccwl-violation when loading non-existent source files.
Diffstat (limited to 'tests/lang.scm')
-rw-r--r--tests/lang.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/lang.scm b/tests/lang.scm
index 247f2e1..d8a891b 100644
--- a/tests/lang.scm
+++ b/tests/lang.scm
@@ -17,6 +17,8 @@
 ;;; along with ccwl.  If not, see <https://www.gnu.org/licenses/>.
 
 (use-modules (srfi srfi-64)
+             (test-utils utils)
+             (ccwl conditions)
              (ccwl lang))
 
 (test-begin "lang")
@@ -24,4 +26,8 @@
 (test-assert "load source file referencing external CWL workflow relative to it"
   (ccwl-load "test-data/external-cwl-workflow.scm"))
 
+(test-condition "loading non-existent source file must raise a &ccwl-violation"
+  ccwl-violation?
+  (ccwl-load "/non-existent/file.scm"))
+
 (test-end "lang")