Calls to ok? should be wrapped in expect, yes? I just noticed that next.jdbc has some unwrapped calls: https://github.com/seancorfield/next-jdbc/blob/10cc525458e38436402a668c446b22c7b27774f5/test/next/jdbc_test.clj#L30-L40
yes, ok? is not an assert, it's a helper that returns true if nothing is thrown
i gotta stop answering questions while making dinner, i can't think straight lol
expect fails if given a falsely value, so you use ok? as a mirror of thrown? to assert that regardless of the returned value, it doesn't throw