We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1cc51d commit 8fcf781Copy full SHA for 8fcf781
1 file changed
src/test/clojure/clojure/core/async/flow_test.clj
@@ -7,14 +7,15 @@
7
;; You must not remove this notice, or any other, from this software.
8
9
(ns clojure.core.async.flow-test
10
- (:require [clojure.test :refer :all]))
+ (:require [clojure.test :refer :all]
11
+ [clojure.core.async.impl.dispatch :as dispatch]))
12
13
(defmacro deftest-against
14
[ver name & body]
- (when (clojure.core.async.impl.dispatch/at-least-clojure-version? ver)
15
+ (when (dispatch/at-least-clojure-version? ver)
16
`(deftest ~name ~@body)))
17
-(when (clojure.core.async.impl.dispatch/at-least-clojure-version? [1 11 0])
18
+(when (dispatch/at-least-clojure-version? [1 11 0])
19
(require '[clojure.core.async.flow :as flow]))
20
21
(deftest-against [1 11 0] test-futurize
0 commit comments