clj-ml/test/clj_ml/io_test.clj
2013-03-22 10:57:49 -04:00

7 lines
257 B
Clojure

(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)))))