gpt4 book ai didi

emacs - 如何让 emacs cider(clojure 模式)在运行测试时使用我的测试环境变量?

转载 作者:行者123 更新时间:2023-12-02 15:44:04 24 4
gpt4 key购买 nike

我已经为开发和测试环境设置了单独的database-url,当在 REPL 中以及从 lein test 上运行我的 web 应用程序时,这效果很好。命令行。这是我的 profiles.clj:

{:profiles/dev  {:env {:database-url "wiki"}}
:profiles/test {:env {:database-url "wiki-test"}}}

以及正确的数据库实例被命中的证据(我正在使用 CouchDB):

;; Running the site from the REPL:
[info] [<0.12149.0>] 127.0.0.1 - - GET /wiki/home-page 200
[info] [<0.10353.0>] 127.0.0.1 - - GET /wiki/about 200

;; Running lein test:
[info] [<0.12026.0>] 127.0.0.1 - - GET /wiki-test/welcome 404
[error] [<0.12933.0>] Could not open file /usr/local/var/lib/couchdb/wiki-test.c

但是,当我在 Emacs 中通过 Cider 运行测试时,它使用开发环境,因此使用了错误的数据库实例。

如何解决这个问题?

最佳答案

我建议您尝试使用 with-redefs 来实现这一点。

类似这样的事情:

(with-redefs [db (get-my-test-db)]
(run-my-tests)

其中 db 是您在测试中绑定(bind)数据库句柄的符号。

这篇文章应该会有帮助: Isolating External Dependencies in Clojure

关于emacs - 如何让 emacs cider(clojure 模式)在运行测试时使用我的测试环境变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42069550/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com