diff --git a/test/clj_ml/io_test.clj b/test/clj_ml/io_test.clj new file mode 100644 index 0000000..5bdfc6b --- /dev/null +++ b/test/clj_ml/io_test.clj @@ -0,0 +1,7 @@ +(ns clj-ml.io-test + (:use [clj-ml io data] :reload-all) + (:use clojure.test midje.sweet)) + +(deftest load-instances-iris-url + (let [ds (load-instances :arff "http://repository.seasr.org/Datasets/UCI/arff/iris.arff")] + (is (= 150 (dataset-count ds)))))