Merge pull request #36 from thelmuth/fix/tests-with-refactor

Got old tests to pass
This commit is contained in:
Lee Spector 2021-11-02 13:39:16 -04:00 committed by GitHub
commit bbb5dfa8bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -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))

View File

@ -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))

View File

@ -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)