rackunit icon indicating copy to clipboard operation
rackunit copied to clipboard

Results 35 rackunit issues
Sort by recently updated
recently updated
newest added

Currently, the `check-info-test.rkt` and `standalone.rkt` tests fail. We need to decide on a resolution to this issue for the upcoming 8.2 release. The story here is that we wanted to...

Working with `typed/rackunit` on 7.9, CS variant, macOS. Here's a rela ```` #lang typed/racket/base (module+ test (require typed/rackunit)) (module+ test (test-case "one" (check-not-false 1))) ```` and then do `raco test`,...

bug

The Typed Racket variant of rackunit seems to be missing untyped rackunit's `check-match`.

It would be great if `check-equal?` accepted multiple values in each of its sub-expressions and then just made sure that they had the same number of values and then checked...

enhancement
help wanted

I think that exn:break? exceptions should not be caught by rackunit's exception handling mechanism. They shouldn't count as a failed test due to an error, they should just be unhandled...

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,...

question

> I think I found an accessibility bug in the GUI view 🙂 It uses color indicators for test results in the tree of tests. This will work only for...

bug

``` (check-exn #px"bad" (λ () 1) "no state") ``` yields ``` -------------------- . FAILURE name: check-exn location: interactions from an unsaved editor:33:2 params: '(#px"bad" #) message: "no state" ``` Could...

bug

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...

enhancement