humane-test-output/test/pjstadig/humane_test_output/formatting_test.clj
2015-02-21 07:34:22 -05:00

19 lines
773 B
Clojure

(ns pjstadig.humane-test-output.formatting-test
(:use [clojure.test]))
(deftest t-formatting
(testing "FIXME, I fail."
(is (= {:foo :bar :baz :quux :something "a long string?"
:another-key "and another value"}
{:fo :bar}))
(is (= {:foo :bar :baz :quux :something "a long string?"
:another-key "and another value"}
{:foo :bar}))
(is (= {:foo :bar}
{:foo :bar :baz :quux :something "a long string?"
:another-key "and another value"}))
(is (= {:foo :bar :baz :quux} {:foo :bar :baz :quux} {:fo :bar :baz :quux}
{:fo :bar :baz :quux}))
(let [foo {:foo :bar :baz :quux :something "a long string?"
:another-key "and another value"}]
(is (list? foo)))))