1: Preparation for conversion to CLJC. Doesn't yet fully work but that seems

to be due to a breaking change in a library.
This commit is contained in:
simon 2016-09-24 10:29:34 +01:00
parent f1b35dc948
commit 6237eab0cd
13 changed files with 50 additions and 49 deletions

View file

@ -1,6 +1,6 @@
(ns mw-engine.core-test
(ns microworld.engine.core-test
(:require [clojure.test :refer :all]
[mw-engine.core :refer :all]))
[microworld.engine.core :refer :all]))
(deftest apply-rule-test
(testing "Application of a single rule"

View file

@ -1,8 +1,8 @@
(ns mw-engine.drainage-test
(ns microworld.engine.drainage-test
(:require [clojure.test :refer :all]
[mw-engine.world :as world]
[mw-engine.utils :as utils]
[mw-engine.drainage :refer :all]))
[microworld.engine.world :as world]
[microworld.engine.utils :as utils]
[microworld.engine.drainage :refer :all]))
(deftest is-hollow-test
(testing "detection of hollows"

View file

@ -1,8 +1,8 @@
(ns mw-engine.heightmap-test
(ns microworld.engine.heightmap-test
(:use clojure.java.io)
(:require [clojure.test :refer :all]
[mw-engine.heightmap :refer :all]
[mw-engine.world :as world :only [make-world]]
[microworld.engine.heightmap :refer :all]
[microworld.engine.world :as world :only [make-world]]
[clojure.math.combinatorics :as combo]))
(deftest apply-heightmap-test

View file

@ -1,8 +1,8 @@
(ns mw-engine.utils-test
(:use [mw-engine.world :as world])
(ns microworld.engine.utils-test
(:use [microworld.engine.world :as world])
(:require [clojure.test :refer :all]
[clojure.math.combinatorics :as combo]
[mw-engine.utils :refer :all]))
[microworld.engine.utils :refer :all]))
(deftest abs-test
(testing "Absolute value function"

View file

@ -1,6 +1,6 @@
(ns mw-engine.world-test
(ns microworld.engine.world-test
(:require [clojure.test :refer :all]
[mw-engine.world :refer :all]
[microworld.engine.world :refer :all]
[clojure.math.combinatorics :as combo]))
(deftest genesis-test