|
(iter (for (x y) in-csv #P"numbers.csv") |
The path above is relative to the current path, so it fails if the current path is not the tests directory.
Instead it should be using asdf:system-relative-pathname like +test-csv-quoted-path+ is defined earlier in the file.
Useful to define:
(defun cl-csv-test-relative (filename)
(merge-pathnames filename (asdf:system-relative-pathname :cl-csv "tests/")))
and use it in all places.
cl-csv/tests/csv.lisp
Line 267 in 2d64d41
The path above is relative to the current path, so it fails if the current path is not the tests directory.
Instead it should be using asdf:system-relative-pathname like +test-csv-quoted-path+ is defined earlier in the file.
Useful to define:
and use it in all places.