You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
184 B

(ns two.core-test
(:use clojure.test)
(:require [two.core :refer :all]))
(deftest first-fib
(is (= 1 (first fibs))))
(deftest first-fib
(is (= '(1 2 3 5 8) (take 5 fibs))))