minitest.cr v0.3.0 Release Notes

  • ๐Ÿ’ฅ Breaking Change:

    • โœ… Each test now runs in a single instance of the test class, so instance variables don't leak from one test to another.

    This change will have a breaking impact if you rely on instance variables to cache or share data between tests. You'll may want to use class variables for this purpose instead.

    ๐Ÿ›  Fixes:

    • ๐Ÿ‘ Allow describes in specs to start with special chars like . or #
    • ๐Ÿ‘ Allow skip :symbol and flunk :symbol