Programmatically loading clojure libraries

I am trying to programmatically download some clojure libraries to make a simple automated testing program.

What I end up sending on request is

(require :reload '("peg" "test.peg-test"))

How do I convert this list into something useful, or am I barking the wrong tree completely?

+3
source share
1 answer

Do you know that there are test libraries available in clojure.contrib?

, namespaces. Bill Clementson user.clj, user .

, , :

(ns testing-peg
  (:require [peg test.peg-test])
+4

Source: https://habr.com/ru/post/1713723/


All Articles