Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6161807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:32:26+00:00 2026-05-23T21:32:26+00:00

I just recently started working on a database-heavy Clojure application and am attempting to

  • 0

I just recently started working on a database-heavy Clojure application and am attempting to get some unit tests in place. Ideally, I’d like to avoid actually hitting a real database by mocking things out.

Here’s an example of a simple test:

test-core.clj

(deftest core-test
  (is (> (count (fn-under-test "foo")) 0)))

core.clj

(defn fn-under-test [slug]
  (db/query "select * from %1" slug))

db.clj

(defn query [q & args]
  (sql/with-connection db
    (sql/with-query-results res
      [(clause q args)]
      (doall res))))

My question: is there a way, from within test-core.clj, to bind a custom function to ‘db/query’ such that core.clj will use it, as opposed to the definition within db.clj?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T21:32:27+00:00Added an answer on May 23, 2026 at 9:32 pm

    You can use binding to try and override db/query, but you’ll need to define the namespace and var first. The easiest way is to import the db.clj into the same namespace and then use bindings.

    (ns test-core
        (:use clojure.test)
        (:require db))
    
    (deftest core-test
      (binding [db/query (fn [query & args] (comment return some value here))]
        (is (> (count (fn-under-test "foo")) 0))))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently started working on a large complex application, and I've just been assigned
I have recently just started working with Lucene (specifically, Lucene.Net) and have successfully created
I recently started working on SilverLight and WPF. I am just curious why microsoft
I've just recently started working with Visual Studio this summer, primarily on CUDA and
I am just getting started with Silverlight and have recently added a Silverlight project
I've been a web developer for some time now, and have recently started learning
So recently I've really started to use php actively, and I need some insights
I don't know much about this, just having recently started with JavaScript, so simple
I recently started working on a web project which was already in progress; the
I've recently started using Git and am having trouble with just one thing. How

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.