Merge pull request #36 from thelmuth/fix/tests-with-refactor
Got old tests to pass
This commit is contained in:
commit
bbb5dfa8bd
@ -1,6 +1,6 @@
|
||||
(ns propeller.push.utils.helpers-test
|
||||
(ns propeller.push.instructions-test
|
||||
(:require [clojure.test :as t]
|
||||
[propeller.push.utils.helpers :as h]))
|
||||
[propeller.push.instructions :as h]))
|
||||
|
||||
(t/deftest get-literal-type-test
|
||||
(t/is (= (h/get-literal-type "abc") :string))
|
@ -1,6 +1,6 @@
|
||||
(ns propeller.push.utils.limits-test
|
||||
(ns propeller.push.limits-test
|
||||
(:require [clojure.test :as t]
|
||||
[propeller.push.utils.limits :as l]))
|
||||
[propeller.push.limits :as l]))
|
||||
|
||||
(t/deftest limit-number-test
|
||||
(t/is (= (l/limit-number (inc l/max-number-magnitude))
|
@ -1,7 +1,7 @@
|
||||
(ns propeller.push.state-test
|
||||
(:require [clojure.test :as t]
|
||||
[propeller.push.state :as state]
|
||||
[propeller.push.utils.limits :as l]))
|
||||
[propeller.push.limits :as l]))
|
||||
|
||||
(t/deftest push-to-stack-test
|
||||
(t/is (= (state/push-to-stack {:integer '()} :integer 1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user