Hello,

Even after reading carefully the official spec guide and testing in the 
REPL, I'm not sure I'm `spec`'ing correctly a function that accepts 
optional keyword args.

Here's how I do it in a dumb example :

```
(require '[clojure.spec.alpha :as s])

(defn adder [a b & {:keys [c] :or {c 1}}]
   (+ a b c))

(s/def ::a integer?)
(s/def ::b integer?)
(s/def ::c integer?)

(s/fdef adder
          :args (s/cat :a integer? :b integer? (s/? (s/keys* :opt-un 
[::c])))
          :ret string?)
```

Is this correct ?

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to