Jacqueline Firth
Jacqueline Firth
Since there's a `==>` function for logical implication of properties, it makes sense to provide functions for other logical operations on properties. If a combined property made with an AND...
I wanted a simple `arbitrary-datum`, which would be an arbitrary atomic Racket datum, such as: - A number - A character - A symbol - A boolean It would be...
Planning to add these eventually. Should work like sorted sets and sorted maps.
Is support for HTTP/2 and/or HTTP/3 on the roadmap for this package? If it is, would you like help with that?
Logging?
Inspired by [this racket-users thread](https://groups.google.com/forum/#!topic/racket-users/AlhEFpUajvw). It would be useful to have some loggers for various database connection events to debug database connection issues. For example, logging all queries at the...
I have a lot of tests that look like this: ```scheme (test-case "customer-order-sales-tax should calculate tax correctly" (define order (customer-order #:price 10.00)) (check-equal? (customer-order-sales-tax order) 0.50)) ``` When this fails,...
In the [Pyret](https://www.pyret.org/) language, tests may be included within the definition of a function using a [`where` block](https://www.pyret.org/docs/latest/Declarations.html#%28part._.Where_blocks%29): ``` fun sum(l): cases (List) l: | empty => 0 | link(first,...
It would be nice to have some custom checks that simplify assertions made on sequences. - `(check-contains? seq expected ...)` For each `expected`, assert that `seq` contains at least one...