roast icon indicating copy to clipboard operation
roast copied to clipboard

🦋 Raku test suite

Results 123 roast issues
Sort by recently updated
recently updated
newest added

see:rakudo/rakudo#2826 This commit adds tests for basic rounding methods: `HALF-[UP|DOWN|EVEN|ODD] | [TO|FROM]-ZERO`.

See https://github.com/rakudo/rakudo/pull/4936. @lizmat may be interested in some TODOs now passing.

On 2021-11-08, I merged rakudo/rakudo#4536, which corrected Rakudo's handling of re-binding to better fit the behavior described in S02, S06, and S07 (see that issue for background). At that time,...

The test intentionally triggers a segfault. Especially on developer's systems, this will create a core dump that will be listed by e.g. `coredumpctl list` which makes it harder to notice...

Signature objects are used in the ecosystem. To generate those at runtime one can EVAL a signature literal or call `Signature.new`. The latter is nowhere to be found in roast...

In support of Raku/problem-solving#294 and rakudo/rakudo#4495

See https://github.com/rakudo/rakudo/pull/4648. Just check for the named variants, since the differences between them and optional positionals aren't relevant to `Binder`'s `&handle_optional`.

Added a new test of multi-dispatch with sequential resolution of an ambiguous subset match. Following a discussion with Jonathan Worthington in https://github.com/rakudo/rakudo/issues/4547