aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-10-31 00:44:22 -0700
committerTom Faulhaber <git_net@infolace.com>2009-10-31 00:44:22 -0700
commite264bdee1f996a5ff5c3af055b1cc50340959f65 (patch)
treed526613bf9242b1607b4f978c265e123a28168f5
parent111aad61e3df823bda0553902e4a0392b45cc5fb (diff)
Updated documentation for commit 6f9e9c276bf53b0fce2275abf29a25f9735a6409
-rw-r--r--api-index.html1
-rw-r--r--api-index.json32
-rw-r--r--index.html2
-rw-r--r--pprint-api.html10
-rw-r--r--test-is-api.html27
5 files changed, 47 insertions, 25 deletions
diff --git a/api-index.html b/api-index.html
index 383e8ce2..4e37fd06 100644
--- a/api-index.html
+++ b/api-index.html
@@ -731,6 +731,7 @@ Shortcuts:<br />
</span></span><span id="section-content"> <a href="dataflow-api.html#update-values">update-values</a><span id="line-content"> function dataflow Given a dataflow, and a map of name-value pairs, u...
</span></span><span id="section-content"> <a href="sql-api.html#update-values">update-values</a><span id="line-content"> function sql Updates values on selected rows in a table. where-...
</span></span><span id="section-content"> <a href="str-utils2-api.html#upper-case">upper-case</a><span id="line-content"> function str-utils2 Converts string to all upper-case..
+</span></span><span id="section-content"> <a href="test-is-api.html#use-fixtures">use-fixtures</a><span id="line-content"> multimethod test-is Wrap test runs in a fixture function to perform se...
</span></span><span id="section-content"> <a href="pprint-api.html#use-method">use-method</a><span id="line-content"> function pprint Installs a function as a new method of multimethod...
</span></span></pre>
</div><div id="index-body">
diff --git a/api-index.json b/api-index.json
index 6232c991..3d18c792 100644
--- a/api-index.json
+++ b/api-index.json
@@ -4034,7 +4034,7 @@
"The pretty print dispatch function for simple data structure format.",
"name":"*simple-dispatch*"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L26",
+ "http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L26",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//pprint-api.html#pprint/cl-format",
"namespace":"clojure.contrib.pprint",
@@ -4043,7 +4043,7 @@
"An implementation of a Common Lisp compatible format function. cl-format formats its\narguments to an output stream or string based on the format control string given. It \nsupports sophisticated formatting of structured data.\n\nWriter is an instance of java.io.Writer, true to output to *out* or nil to output \nto a string, format-in is the format control string and the remaining arguments \nare the data to be formatted.\n\nThe format control string is a string to be output with embedded 'format directives' \ndescribing how to format the various arguments passed in.\n\nIf writer is nil, cl-format returns the formatted result string. Otherwise, cl-format \nreturns nil.\n\nFor example:\n (let [results [46 38 22]]\n (cl-format true \"There ~[are~;is~:;are~]~:* ~d result~:p: ~{~d~^, ~}~%\" \n (count results) results))\n\nPrints to *out*:\n There are 3 results: 46, 38, 22\n\nDetailed documentation on format control strings is available in the \"Common Lisp the \nLanguage, 2nd edition\", Chapter 22 (available online at:\nhttp://www.cs.cmu.edu/afs/cs.cmu.edu/project/ai-repository/ai/html/cltl/clm/node200.html#SECTION002633000000000000000) \nand in the Common Lisp HyperSpec at \nhttp://www.lispworks.com/documentation/HyperSpec/Body/22_c.htm",
"name":"cl-format"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1747",
+ "http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1749",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//pprint-api.html#pprint/compile-format",
"namespace":"clojure.contrib.pprint",
@@ -4052,7 +4052,7 @@
"Compiles format-str into a compiled format which can be used as an argument\nto cl-format just like a plain format string. Use this function for improved \nperformance when you're using the same format string repeatedly",
"name":"compile-format"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1815",
+ "http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1817",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//pprint-api.html#pprint/formatter",
"namespace":"clojure.contrib.pprint",
@@ -4061,7 +4061,7 @@
"Makes a function which can directly run format-in. The function is\nfn [stream & args] ... and returns nil unless the stream is nil (meaning \noutput to a string) in which case it returns the resulting string.\n\nformat-in can be either a control string or a previously compiled format.",
"name":"formatter"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1829",
+ "http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1831",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//pprint-api.html#pprint/formatter-out",
"namespace":"clojure.contrib.pprint",
@@ -4070,7 +4070,7 @@
"Makes a function which can directly run format-in. The function is\nfn [& args] ... and returns nil. This version of the formatter macro is\ndesigned to be used with *out* set to an appropriate Writer. In particular,\nthis is meant to be used as part of a pretty printer dispatch method.\n\nformat-in can be either a control string or a previously compiled format.",
"name":"formatter-out"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1151",
+ "http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1153",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//pprint-api.html#pprint/fresh-line",
"namespace":"clojure.contrib.pprint",
@@ -5641,7 +5641,7 @@
"Returns generic assertion code for any functional predicate. The\n'expected' argument to 'report' will contains the original form, the\n'actual' argument will contain the form with all its sub-forms\nevaluated. If the predicate returns false, the 'actual' form will\nbe wrapped in (not...).",
"name":"assert-predicate"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L843",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L847",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/compose-fixtures",
"namespace":"clojure.contrib.test-is",
@@ -5753,7 +5753,7 @@
"Generic assertion macro. 'form' is any predicate test.\n'msg' is an optional message to attach to the assertion.\n\nExample: (is (= 4 (+ 2 2)) \"Two plus two should be 4\")\n\nSpecial forms:\n\n(is (thrown? c body)) checks that an instance of c is thrown from\nbody, fails if not; then returns the thing thrown.\n\n(is (thrown-with-msg? c re body)) checks that an instance of c is\nthrown AND that the message on the exception matches (with\nre-matches) the regular expression re.",
"name":"is"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L849",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L853",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/join-fixtures",
"namespace":"clojure.contrib.test-is",
@@ -5770,7 +5770,7 @@
"Generic reporting function, may be overridden to plug in\ndifferent report formats (e.g., TAP, JUnit). Assertions such as\n'is' call 'report' to indicate results. The argument given to\n'report' will be a map with a :type key. See the documentation at\nthe top of test_is.clj for more information on the types of\narguments for 'report'.",
"name":"report"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L917",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L921",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/run-all-tests",
"namespace":"clojure.contrib.test-is",
@@ -5779,7 +5779,7 @@
"Runs all tests in all namespaces; prints results.\nOptional argument is a regular expression; only namespaces with\nnames matching the regular expression (with re-matches) will be\ntested.",
"name":"run-all-tests"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L909",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L913",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/run-tests",
"namespace":"clojure.contrib.test-is",
@@ -5805,7 +5805,7 @@
"doc":"Returns true if form is a valid template expression.",
"name":"template?"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L874",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L878",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/test-all-vars",
"namespace":"clojure.contrib.test-is",
@@ -5814,7 +5814,7 @@
"Calls test-var on every var interned in the namespace, with fixtures.",
"name":"test-all-vars"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L885",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L889",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/test-ns",
"namespace":"clojure.contrib.test-is",
@@ -5823,7 +5823,7 @@
"If the namespace defines a function named test-ns-hook, calls that.\nOtherwise, calls test-all-vars on the namespace. 'ns' is a\nnamespace object or a symbol.\n\nInternally binds *report-counters* to a ref initialized to\n*inital-report-counters*. Returns the final, dereferenced state of\n*report-counters*.",
"name":"test-ns"},
{"source-url":
- "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L860",
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L864",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/test-var",
"namespace":"clojure.contrib.test-is",
@@ -5868,6 +5868,14 @@
"Used by the 'is' macro to catch unexpected exceptions.\nYou don't call this.",
"name":"try-expr"},
{"source-url":
+ "http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L830",
+ "wiki-url":
+ "http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/use-fixtures",
+ "namespace":"clojure.contrib.test-is",
+ "doc":
+ "Wrap test runs in a fixture function to perform setup and\nteardown. Using a fixture-type of :each wraps every test\nindividually, while:once wraps the whole run in a single function.",
+ "name":"use-fixtures"},
+ {"source-url":
"http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.\nUse '--' to separate paths from revisions/src/clojure/test.clj#L774",
"wiki-url":
"http://richhickey.github.com/clojure-contrib//test-is-api.html#test-is/with-test",
diff --git a/index.html b/index.html
index 0faf0b9c..ba19582c 100644
--- a/index.html
+++ b/index.html
@@ -1965,7 +1965,7 @@ This was suggested by Howard Lewis Ship in ticket #26,
<a href="http://www.assembla.com/spaces/clojure-contrib/tickets/26">http://www.assembla.com/spaces/clojure-contrib/tickets/26</a></pre>
Public variables and functions:
- <span id="var-link"><a href="test-is-api.html#test-is/*load-tests*" id="var-tag">*load-tests*</a> </span><span id="var-link"><a href="test-is-api.html#test-is/*stack-trace-depth*" id="var-tag">*stack-trace-depth*</a> </span><span id="var-link"><a href="test-is-api.html#test-is/apply-template" id="var-tag">apply-template</a> </span><span id="var-link"><a href="test-is-api.html#test-is/are" id="var-tag">are</a> </span><span id="var-link"><a href="test-is-api.html#test-is/assert-any" id="var-tag">assert-any</a> </span><span id="var-link"><a href="test-is-api.html#test-is/assert-predicate" id="var-tag">assert-predicate</a> </span><span id="var-link"><a href="test-is-api.html#test-is/compose-fixtures" id="var-tag">compose-fixtures</a> </span><span id="var-link"><a href="test-is-api.html#test-is/deftest" id="var-tag">deftest</a> </span><span id="var-link"><a href="test-is-api.html#test-is/deftest-" id="var-tag">deftest-</a> </span><span id="var-link"><a href="test-is-api.html#test-is/do-template" id="var-tag">do-template</a> </span><span id="var-link"><a href="test-is-api.html#test-is/file-position" id="var-tag">file-position</a> </span><span id="var-link"><a href="test-is-api.html#test-is/find-holes" id="var-tag">find-holes</a> </span><span id="var-link"><a href="test-is-api.html#test-is/find-pure-exprs" id="var-tag">find-pure-exprs</a> </span><span id="var-link"><a href="test-is-api.html#test-is/find-symbols" id="var-tag">find-symbols</a> </span><span id="var-link"><a href="test-is-api.html#test-is/flatten-map" id="var-tag">flatten-map</a> </span><span id="var-link"><a href="test-is-api.html#test-is/function?" id="var-tag">function?</a> </span><span id="var-link"><a href="test-is-api.html#test-is/get-possibly-unbound-var" id="var-tag">get-possibly-unbound-var</a> </span><span id="var-link"><a href="test-is-api.html#test-is/inc-report-counter" id="var-tag">inc-report-counter</a> </span><span id="var-link"><a href="test-is-api.html#test-is/is" id="var-tag">is</a> </span><span id="var-link"><a href="test-is-api.html#test-is/join-fixtures" id="var-tag">join-fixtures</a> </span><span id="var-link"><a href="test-is-api.html#test-is/report" id="var-tag">report</a> </span><span id="var-link"><a href="test-is-api.html#test-is/run-all-tests" id="var-tag">run-all-tests</a> </span><span id="var-link"><a href="test-is-api.html#test-is/run-tests" id="var-tag">run-tests</a> </span><span id="var-link"><a href="test-is-api.html#test-is/set-test" id="var-tag">set-test</a> </span><span id="var-link"><a href="test-is-api.html#test-is/template?" id="var-tag">template?</a> </span><span id="var-link"><a href="test-is-api.html#test-is/test-all-vars" id="var-tag">test-all-vars</a> </span><span id="var-link"><a href="test-is-api.html#test-is/test-ns" id="var-tag">test-ns</a> </span><span id="var-link"><a href="test-is-api.html#test-is/test-var" id="var-tag">test-var</a> </span><span id="var-link"><a href="test-is-api.html#test-is/testing" id="var-tag">testing</a> </span><span id="var-link"><a href="test-is-api.html#test-is/testing-contexts-str" id="var-tag">testing-contexts-str</a> </span><span id="var-link"><a href="test-is-api.html#test-is/testing-vars-str" id="var-tag">testing-vars-str</a> </span><span id="var-link"><a href="test-is-api.html#test-is/try-expr" id="var-tag">try-expr</a> </span><span id="var-link"><a href="test-is-api.html#test-is/with-test" id="var-tag">with-test</a> </span><span id="var-link"><a href="test-is-api.html#test-is/with-test-out" id="var-tag">with-test-out</a> </span><br />
+ <span id="var-link"><a href="test-is-api.html#test-is/*load-tests*" id="var-tag">*load-tests*</a> </span><span id="var-link"><a href="test-is-api.html#test-is/*stack-trace-depth*" id="var-tag">*stack-trace-depth*</a> </span><span id="var-link"><a href="test-is-api.html#test-is/apply-template" id="var-tag">apply-template</a> </span><span id="var-link"><a href="test-is-api.html#test-is/are" id="var-tag">are</a> </span><span id="var-link"><a href="test-is-api.html#test-is/assert-any" id="var-tag">assert-any</a> </span><span id="var-link"><a href="test-is-api.html#test-is/assert-predicate" id="var-tag">assert-predicate</a> </span><span id="var-link"><a href="test-is-api.html#test-is/compose-fixtures" id="var-tag">compose-fixtures</a> </span><span id="var-link"><a href="test-is-api.html#test-is/deftest" id="var-tag">deftest</a> </span><span id="var-link"><a href="test-is-api.html#test-is/deftest-" id="var-tag">deftest-</a> </span><span id="var-link"><a href="test-is-api.html#test-is/do-template" id="var-tag">do-template</a> </span><span id="var-link"><a href="test-is-api.html#test-is/file-position" id="var-tag">file-position</a> </span><span id="var-link"><a href="test-is-api.html#test-is/find-holes" id="var-tag">find-holes</a> </span><span id="var-link"><a href="test-is-api.html#test-is/find-pure-exprs" id="var-tag">find-pure-exprs</a> </span><span id="var-link"><a href="test-is-api.html#test-is/find-symbols" id="var-tag">find-symbols</a> </span><span id="var-link"><a href="test-is-api.html#test-is/flatten-map" id="var-tag">flatten-map</a> </span><span id="var-link"><a href="test-is-api.html#test-is/function?" id="var-tag">function?</a> </span><span id="var-link"><a href="test-is-api.html#test-is/get-possibly-unbound-var" id="var-tag">get-possibly-unbound-var</a> </span><span id="var-link"><a href="test-is-api.html#test-is/inc-report-counter" id="var-tag">inc-report-counter</a> </span><span id="var-link"><a href="test-is-api.html#test-is/is" id="var-tag">is</a> </span><span id="var-link"><a href="test-is-api.html#test-is/join-fixtures" id="var-tag">join-fixtures</a> </span><span id="var-link"><a href="test-is-api.html#test-is/report" id="var-tag">report</a> </span><span id="var-link"><a href="test-is-api.html#test-is/run-all-tests" id="var-tag">run-all-tests</a> </span><span id="var-link"><a href="test-is-api.html#test-is/run-tests" id="var-tag">run-tests</a> </span><span id="var-link"><a href="test-is-api.html#test-is/set-test" id="var-tag">set-test</a> </span><span id="var-link"><a href="test-is-api.html#test-is/template?" id="var-tag">template?</a> </span><span id="var-link"><a href="test-is-api.html#test-is/test-all-vars" id="var-tag">test-all-vars</a> </span><span id="var-link"><a href="test-is-api.html#test-is/test-ns" id="var-tag">test-ns</a> </span><span id="var-link"><a href="test-is-api.html#test-is/test-var" id="var-tag">test-var</a> </span><span id="var-link"><a href="test-is-api.html#test-is/testing" id="var-tag">testing</a> </span><span id="var-link"><a href="test-is-api.html#test-is/testing-contexts-str" id="var-tag">testing-contexts-str</a> </span><span id="var-link"><a href="test-is-api.html#test-is/testing-vars-str" id="var-tag">testing-vars-str</a> </span><span id="var-link"><a href="test-is-api.html#test-is/try-expr" id="var-tag">try-expr</a> </span><span id="var-link"><a href="test-is-api.html#test-is/use-fixtures" id="var-tag">use-fixtures</a> </span><span id="var-link"><a href="test-is-api.html#test-is/with-test" id="var-tag">with-test</a> </span><span id="var-link"><a href="test-is-api.html#test-is/with-test-out" id="var-tag">with-test-out</a> </span><br />
</div><div id="namespace-entry">
<br />
diff --git a/pprint-api.html b/pprint-api.html
index 5cef5251..ac47a1b6 100644
--- a/pprint-api.html
+++ b/pprint-api.html
@@ -293,7 +293,7 @@ Language, 2nd edition", Chapter 22 (available online at:
<a href="http://www.cs.cmu.edu/afs/cs.cmu.edu/project/ai-repository/ai/html/cltl/clm/node200.html#SECTION002633000000000000000)">http://www.cs.cmu.edu/afs/cs.cmu.edu/project/ai-repository/ai/html/cltl/clm/node200.html#SECTION002633000000000000000)</a>
and in the Common Lisp HyperSpec at
<a href="http://www.lispworks.com/documentation/HyperSpec/Body/22_c.htm">http://www.lispworks.com/documentation/HyperSpec/Body/22_c.htm</a></pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L26" id="var-source">Source</a>
+ <a href="http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L26" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -304,7 +304,7 @@ and in the Common Lisp HyperSpec at
<pre id="var-docstr">Compiles format-str into a compiled format which can be used as an argument
to cl-format just like a plain format string. Use this function for improved
performance when you're using the same format string repeatedly</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1747" id="var-source">Source</a>
+ <a href="http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1749" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -317,7 +317,7 @@ fn [stream &amp; args] ... and returns nil unless the stream is nil (meaning
output to a string) in which case it returns the resulting string.
format-in can be either a control string or a previously compiled format.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1815" id="var-source">Source</a>
+ <a href="http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1817" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -331,7 +331,7 @@ designed to be used with *out* set to an appropriate Writer. In particular,
this is meant to be used as part of a pretty printer dispatch method.
format-in can be either a control string or a previously compiled format.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1829" id="var-source">Source</a>
+ <a href="http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1831" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -341,7 +341,7 @@ format-in can be either a control string or a previously compiled format.</pre>
</pre>
<pre id="var-docstr">Make a newline if the Writer is not already at the beginning of the line.
N.B. Only works on ColumnWriters right now.</pre>
- <a href="http://github.com/richhickey/clojure-contrib/blob/0d2919855b1cc18f21e08fb4ee4a8c32445582e0/src/clojure/contrib/pprint/cl-format.clj#L1151" id="var-source">Source</a>
+ <a href="http://github.com/richhickey/clojure-contrib/blob/6f9e9c276bf53b0fce2275abf29a25f9735a6409/src/clojure/contrib/pprint/cl-format.clj#L1153" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
diff --git a/test-is-api.html b/test-is-api.html
index 5b0f05f6..d74c9ab4 100644
--- a/test-is-api.html
+++ b/test-is-api.html
@@ -112,6 +112,8 @@ namespace.
</div><div style="margin-left: 1em;" class="toc-entry">
<a href="#test-is/try-expr">try-expr</a>
</div><div style="margin-left: 1em;" class="toc-entry">
+ <a href="#test-is/use-fixtures">use-fixtures</a>
+ </div><div style="margin-left: 1em;" class="toc-entry">
<a href="#test-is/with-test">with-test</a>
</div><div style="margin-left: 1em;" class="toc-entry">
<a href="#test-is/with-test-out">with-test-out</a>
@@ -232,7 +234,7 @@ Use '--' to separate paths from revisions/src/clojure/test.clj#L615" id="var-sou
<pre id="var-docstr">Composes two fixture functions, creating a new fixture function
that combines their behavior.</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L843" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L847" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -387,7 +389,7 @@ Use '--' to separate paths from revisions/src/clojure/test.clj#L730" id="var-sou
<pre id="var-docstr">Composes a collection of fixtures, in order. Always returns a valid
fixture function, even if the collection is empty.</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L849" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L853" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -415,7 +417,7 @@ Optional argument is a regular expression; only namespaces with
names matching the regular expression (with re-matches) will be
tested.</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L917" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L921" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -427,7 +429,7 @@ Use '--' to separate paths from revisions/src/clojure/test.clj#L917" id="var-sou
<pre id="var-docstr">Runs all tests in the given namespaces; prints results.
Defaults to current namespace if none given.</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L909" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L913" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -460,7 +462,7 @@ Use '--' to separate paths from revisions/src/clojure/test.clj#L810" id="var-sou
</pre>
<pre id="var-docstr">Calls test-var on every var interned in the namespace, with fixtures.</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L874" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L878" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -476,7 +478,7 @@ Internally binds *report-counters* to a ref initialized to
*inital-report-counters*. Returns the final, dereferenced state of
*report-counters*.</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L885" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L889" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -487,7 +489,7 @@ Use '--' to separate paths from revisions/src/clojure/test.clj#L885" id="var-sou
<pre id="var-docstr">If v has a function in its :test metadata, calls that function,
with *testing-vars* bound to (conj *testing-vars* v).</pre>
<a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
-Use '--' to separate paths from revisions/src/clojure/test.clj#L860" id="var-source">Source</a>
+Use '--' to separate paths from revisions/src/clojure/test.clj#L864" id="var-source">Source</a>
</div><div id="var-entry">
<br />
<hr />
@@ -536,6 +538,17 @@ Use '--' to separate paths from revisions/src/clojure/test.clj#L715" id="var-sou
</div><div id="var-entry">
<br />
<hr />
+ <h2 id="test-is/use-fixtures">use-fixtures</h2>
+ <span id="var-type">multimethod</span><br />
+ <pre id="var-usage">No usage documentation available</pre>
+ <pre id="var-docstr">Wrap test runs in a fixture function to perform setup and
+teardown. Using a fixture-type of :each wraps every test
+individually, while:once wraps the whole run in a single function.</pre>
+ <a href="http://github.com/richhickey/clojure-contrib/blob/fatal: ambiguous argument 'clojure/test.clj': unknown revision or path not in the working tree.
+Use '--' to separate paths from revisions/src/clojure/test.clj#L830" id="var-source">Source</a>
+</div><div id="var-entry">
+ <br />
+ <hr />
<h2 id="test-is/with-test">with-test</h2>
<span id="var-type">macro</span><br />
<pre id="var-usage">Usage: (with-test definition &amp; body)