;; Run with ;; ;; guile -L . --debug test/runner.scm (define-module (test-runner) #:use-module (ice-9 match) #:use-module (srfi srfi-64) #:use-module (gn data species) ) (test-begin "runner") (test-assert "Make sure species-meta contains a link to tomato" (assoc "tomato" (cdr (assoc "links" (get-species-meta))))) (test-end "runner")