From e553f4f1693a7db88adf6c952b867f38ccd76ebb Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Tue, 20 Sep 2022 04:37:43 -0700 Subject: [PATCH] add a test for #431 :) --- test/honey/sql/helpers_test.cljc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/honey/sql/helpers_test.cljc b/test/honey/sql/helpers_test.cljc index c32cdd8..f6c7303 100644 --- a/test/honey/sql/helpers_test.cljc +++ b/test/honey/sql/helpers_test.cljc @@ -887,3 +887,8 @@ {:with [[:a]], :insert-into [[:quux [:x :y]] {:select [:id], :from [:table]}]})))) + +(deftest issue-431 + (testing "where false should not be ignored" + (is (= {:where false} + (where false)))))