diff org/test.org @ 317:bb3f8a4af87f

removed references to defvar from clojure.contrib.def since the def from 1.4 now allows for docstrings
author Robert McIntyre <rlm@mit.edu>
date Tue, 28 Feb 2012 14:04:21 -0600
parents 7e7f8d6d9ec5
children 702b5c78c2de
line wrap: on
line diff
     1.1 --- a/org/test.org	Tue Feb 28 13:44:46 2012 -0600
     1.2 +++ b/org/test.org	Tue Feb 28 14:04:21 2012 -0600
     1.3 @@ -11,7 +11,6 @@
     1.4  #+begin_src clojure 
     1.5  (ns cortex.test
     1.6    (:use cortex.util)
     1.7 -  (:use clojure.contrib.def)
     1.8    (:require [cortex.test touch vision body hearing])
     1.9    (:import com.jme3.app.state.AppState
    1.10  	   com.jme3.system.AppSettings))
    1.11 @@ -49,13 +48,13 @@
    1.12    (println-repl (:doc (meta test-fn-var)))
    1.13    (run-world ((deref test-fn-var))))
    1.14  
    1.15 -(defvar test-suite
    1.16 +(def test-suite
    1.17 +  "The full test suite for all sensors/effectors."
    1.18    [#'cortex.test.touch/test-skin
    1.19     #'cortex.test.vision/test-two-eyes
    1.20     #'cortex.test.hearing/test-advanced-hearing
    1.21     #'cortex.test.body/test-proprioception
    1.22 -   #'cortex.test.body/test-motor-control]
    1.23 -  "The full test suite for all sensors/effectors.")
    1.24 +   #'cortex.test.body/test-motor-control])
    1.25  
    1.26  (defn run-suite
    1.27    "Run the entire test-suite."