Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: test-unit/test-unit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.6.8
Choose a base ref
...
head repository: test-unit/test-unit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.6.9
Choose a head ref
  • 7 commits
  • 41 files changed
  • 3 contributors

Commits on Apr 6, 2025

  1. Bump version (#308)

    tikkss authored Apr 6, 2025
    Configuration menu
    Copy the full SHA
    5745469 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2025

  1. doc: test: add ractor def test_XXX style (#309)

    GitHub: fix GH-261
    
    ---------
    
    Co-authored-by: Sutou Kouhei <[email protected]>
    tikkss and kou authored May 22, 2025
    Configuration menu
    Copy the full SHA
    25ab959 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2025

  1. Use require_relative instead of require (#312)

    GitHub: GH-311
    
    This patch will reduce dependency on `$LOAD_PATH`.
    
    It replaces `require` with `require_relative` for internal library
    files. This change is applied only when the replacement can be done
    statically and simply.
    
    More advanced replacements are out of scope for this patch, such as:
    
      * Using `autoload`
      * Changes under `test/`
    
    ---------
    
    Co-authored-by: Sutou Kouhei <[email protected]>
    tikkss and kou authored Jun 13, 2025
    Configuration menu
    Copy the full SHA
    5914658 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2025

  1. Use require_relative instead of autoload (#313)

    GitHub: GH-311
    
    This patch will reduce dependency on `$LOAD_PATH`.
    
    More advanced replacements are out of scope for this patch, such as:
    
      * Changes under `test/`
    
    ---------
    
    Co-authored-by: Sutou Kouhei <[email protected]>
    tikkss and kou authored Jun 19, 2025
    Configuration menu
    Copy the full SHA
    572b28a View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2025

  1. Add --version cli option (#314)

    Recently there have been some issues in Ruby head with binstubs. The
    following output is from
    https://github.com/ruby/ruby-dev-builder/actions/runs/15884945465/job/44794519509:
    
    Like to add `test-unit` to the CLI test, and having a version option
    makes for a simple check.
    
    ```
    Run ruby test_files/cli_test.rb
    
    ───── CLI Test ─────────────────
    bundle    ✅   2.7.0.dev
    gem       ✅   3.7.0.dev
    irb       ✅   1.15.2
    racc      ✅   1.8.1
    rake      ✅   13.3.0
    rbs       ❌   missing binstub
    rdbg      ❌   missing binstub
    rdoc      ✅   6.14.1
    
    ruby 3.5.0dev (2025-06-25T17:13:11Z :detached: a1996b32a9) +PRISM [x86_64-linux]
    
    bad exit
    Error: Process completed with exit code 1.
    ```
    
    Co-authored-by: Sutou Kouhei <[email protected]>
    MSP-Greg and kou authored Jun 28, 2025
    Configuration menu
    Copy the full SHA
    df171be View commit details
    Browse the repository at this point in the history
  2. test: use require_relative instead of require (#315)

    GitHub: fix GH-311
    
    This is a follow-up to GH-312 and the final patch to fix GH-311.
    This patch will reduce dependency on `$LOAD_PATH`.
    
    It replaces `require` with `require_relative` for internal library files
    in `test/`.
    
    If you want to run tests against the installed `test-unit`, you can
    still use the `test/` directory like this:
    
    This example runs tests against the installed `test-unit` version 3.6.8.
    
    ```console
    $ ruby -I $(gem env home)/gems/test-unit-3.6.8/lib bin/test-unit test
    ```
    tikkss authored Jun 28, 2025
    Configuration menu
    Copy the full SHA
    e837be2 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2025

  1. Add 3.6.9 entry (#317)

    GitHub: GH-316
    tikkss authored Jun 30, 2025
    Configuration menu
    Copy the full SHA
    87891d8 View commit details
    Browse the repository at this point in the history
Loading