Mercurial > lasercutter
view src/clojure/contrib/test_contrib/test_core.clj @ 10:ef7dbbd6452c
added clojure source goodness
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 21 Aug 2010 06:25:44 -0400 |
parents | |
children |
line wrap: on
line source
1 ; Copyright (c) Laurent Petit, March 2009. All rights reserved.3 ; The use and distribution terms for this software are covered by the4 ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)5 ; which can be found in the file epl-v10.html at the root of this6 ; distribution.7 ; By using this software in any fashion, you are agreeing to be bound by8 ; the terms of this license.9 ; You must not remove this notice, or any other, from this software.11 ;; test namespace for clojure.contrib.core13 ;; note to other contrib members: feel free to add to this lib15 (ns clojure.contrib.test-core16 (:use clojure.test)17 (:use clojure.contrib.core))19 (deftest test-classic-versions20 (testing "Classic -> throws NPE if passed nil"21 (is (thrown? NullPointerException (-> nil .toString)))22 (is (thrown? NullPointerException (-> "foo" seq next next next .toString))))23 (testing "Classic .. throws NPE if one of the intermediate threaded values is nil"24 (is (thrown? NullPointerException (.. nil toString)))25 (is (thrown? NullPointerException (.. [nil] (get 0) toString)))))27 (deftest test-new-versions28 (testing "Version -?>> falls out on nil"29 (is (nil? (-?>> nil .toString)))30 (is (nil? (-?>> [] seq (map inc))))31 (is (= [] (->> [] seq (map inc)))))32 (testing "Version -?>> completes for non-nil"33 (is (= [3 4] (-?>> [1 2] (map inc) (map inc)))))34 (testing "Version -?> falls out on nil"35 (is (nil? (-?> nil .toString)))36 (is (nil? (-?> "foo" seq next next next .toString))))37 (testing "Version -?> completes for non-nil"38 (is (= [\O \O] (-?> "foo" .toUpperCase rest))))39 (testing "Version .?. returns nil if one of the intermediate threaded values is nil"40 (is (nil? (.?. nil toString)))41 (is (nil? (.?. [nil] (get 0) toString)))))