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 6796113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:25:41+00:00 2026-05-26T18:25:41+00:00

I was reading Clojure in Action chapter 8 about TDD and experimented with the

  • 0

I was reading Clojure in Action chapter 8 about TDD and experimented with the stubbing macro. It uses the dynamic binding mechanism to stub functions. Alas, in Clojure 1.3 it is not possible to use the binding mechanism for non-dynamic vars, so the stubbing macro doesn’t work in most cases, unless you explicitly declare the var which points to a function dynamic. Then I wondered how stubbing is done in Midje and tried to find the source for ‘provided’, but I couldn’t find it. So here it goes:

How is ‘provided’ implemented in a fact in Midje? Can someone explain this in detail?

  • 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-26T18:25:41+00:00Added an answer on May 26, 2026 at 6:25 pm

    Clojure 1.3 provides a with-redefs macro that works even with vars that haven’t been declared dynamic:

    user=> (def this-is-not-dynamic)
    user=> (with-redefs [this-is-not-dynamic 900] this-is-not-dynamic)
    900
    

    For backward compatibility, Midje uses its own version, whose guts look like this:

    (defn alter-one-root [[variable new-value]]
       (if (bound? variable) 
         (let [old-value (deref variable)]
           (alter-var-root variable (fn [current-value] new-value))
           [variable old-value])
         (do
           (.bindRoot variable new-value)
           [variable unbound-marker])))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was reading about Clojure and found a discussion about Java not supporting tail
I develop in Lisp and in Scheme, but I was reading about Clojure and
Reading the clojure API for import I see that :import in the ns macro
I was reading in Practical Clojure (Chapter 5) that the rseq function operation executes
I was reading this site about the clojure web stack: http://brehaut.net/blog/2011/ring_introduction and it has
I've been reading through Programming Clojure, and I've been having some trouble understanding Stuarts
Reading MSDN (and other sources) about custom report items (CRI) for reporting services 2005.
I recently started reading Paul Grahams 'On Lisp', and learning learning clojure along with
After reading Practical Common Lisp I finally understood what the big deal about macros
I am just now learning about function pointers and, as I was reading the

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.