An open API service for producing an overview of a list of open source projects.

Top Ruby Gems: https://github.com/minitest/minitest

minitest ruby seattlerb test testing

Score: 32.48283739673016

Last synced: about 21 hours ago
JSON representation

Repository metadata:

minitest provides a complete suite of testing facilities supporting TDD, BDD, and benchmarking.


Owner metadata:


GitHub Events

Total
Last Year

Committers metadata

Last synced: 2 days ago

Total Commits: 1,095
Total Committers: 3
Avg Commits per committer: 365.0
Development Distribution Score (DDS): 0.014

Commits in past year: 114
Committers in past year: 1
Avg Commits per committer in past year: 114.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Ryan Davis r****y@z****m 1080
Eric Hodel d****n@s****t 10
Steven R. Baker s****r@p****m 5

Issue and Pull Request metadata

Last synced: 10 days ago

Total issues: 117
Total pull requests: 126
Average time to close issues: about 1 year
Average time to close pull requests: about 1 year
Total issue authors: 98
Total pull request authors: 80
Average comments per issue: 4.25
Average comments per pull request: 3.04
Merged pull request: 0
Bot issues: 0
Bot pull requests: 0

Past year issues: 18
Past year pull requests: 18
Past year average time to close issues: about 2 months
Past year average time to close pull requests: 19 days
Past year issue authors: 17
Past year pull request authors: 14
Past year average comments per issue: 4.78
Past year average comments per pull request: 3.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/minitest/minitest

Top Issue Authors

  • Nakilon (5)
  • deepgandu (4)
  • Earlopain (3)
  • MSP-Greg (3)
  • yahonda (2)
  • abatko (2)
  • nvoynov (2)
  • akostadinov (2)
  • ParadoxV5 (2)
  • zenspider (2)
  • svoop (2)
  • mperham (2)
  • keithlayne (1)
  • kyrofa (1)
  • apotonick (1)

Top Pull Request Authors

  • casperisfine (6)
  • tenderlove (6)
  • thomasmarshall (4)
  • mame (4)
  • teoljungberg (3)
  • mattbrictson (3)
  • stomar (3)
  • y-yagi (3)
  • havenwood (3)
  • hsbt (3)
  • tompng (2)
  • flavorjones (2)
  • koic (2)
  • 4e554c4c (2)
  • wtn (2)

Top Issue Labels

Top Pull Request Labels


Package metadata

gem.coop: minitest

minitest provides a complete suite of testing facilities supporting TDD, BDD, and benchmarking. "I had a class with Jim Weirich on testing last week and we were allowed to choose our testing frameworks. Kirk Haines and I were paired up and we cracked open the code for a few test frameworks... I MUST say that minitest is *very* readable / understandable compared to the 'other two' options we looked at. Nicely done and thank you for helping us keep our mental sanity." -- Wayne E. Seguin minitest/test is a small and incredibly fast unit testing framework. It provides a rich set of assertions to make your tests clean and readable. minitest/spec is a functionally complete spec engine. It hooks onto minitest/test and seamlessly bridges test assertions over to spec expectations. minitest/benchmark is an awesome way to assert the performance of your algorithms in a repeatable manner. Now you can assert that your newb co-worker doesn't replace your linear algorithm with an exponential one! minitest/pride shows pride in testing and adds coloring to your test output. I guess it is an example of how to write IO pipes too. :P minitest/test is meant to have a clean implementation for language implementors that need a minimal set of methods to bootstrap a working test suite. For example, there is no magic involved for test-case discovery. "Again, I can't praise enough the idea of a testing/specing framework that I can actually read in full in one sitting!" -- Piotr Szotkowski Comparing to rspec: rspec is a testing DSL. minitest is ruby. -- Adam Hawkins, "Bow Before MiniTest" minitest doesn't reinvent anything that ruby already provides, like: classes, modules, inheritance, methods. This means you only have to learn ruby to use minitest and all of your regular OO practices like extract-method refactorings still apply. == Features/Problems: * minitest/autorun - the easy and explicit way to run all your tests. * minitest/test - a very fast, simple, and clean test system. * minitest/spec - a very fast, simple, and clean spec system. * minitest/benchmark - an awesome way to assert your algorithm's performance. * minitest/pride - show your pride in testing! * minitest/test_task - a full-featured and clean rake task generator. * Incredibly small and fast runner, but no bells and whistles. * Written by squishy human beings. Software can never be perfect. We will all eventually die.

  • Homepage: https://minite.st/
  • Documentation: http://www.rubydoc.info/gems/minitest/
  • Licenses: MIT
  • Latest release: 6.0.6 (published 3 months ago)
  • Last Synced: 2026-08-11T18:30:30.690Z (2 days ago)
  • Versions: 158
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,272,698,642 Total
  • Docker Downloads: 4,955,895,858
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.003%
    • Downloads: 0.008%
  • Maintainers (1)
rubygems.org: minitest

minitest provides a complete suite of testing facilities supporting TDD, BDD, and benchmarking. "I had a class with Jim Weirich on testing last week and we were allowed to choose our testing frameworks. Kirk Haines and I were paired up and we cracked open the code for a few test frameworks... I MUST say that minitest is *very* readable / understandable compared to the 'other two' options we looked at. Nicely done and thank you for helping us keep our mental sanity." -- Wayne E. Seguin minitest/test is a small and incredibly fast unit testing framework. It provides a rich set of assertions to make your tests clean and readable. minitest/spec is a functionally complete spec engine. It hooks onto minitest/test and seamlessly bridges test assertions over to spec expectations. minitest/benchmark is an awesome way to assert the performance of your algorithms in a repeatable manner. Now you can assert that your newb co-worker doesn't replace your linear algorithm with an exponential one! minitest/pride shows pride in testing and adds coloring to your test output. I guess it is an example of how to write IO pipes too. :P minitest/test is meant to have a clean implementation for language implementors that need a minimal set of methods to bootstrap a working test suite. For example, there is no magic involved for test-case discovery. "Again, I can't praise enough the idea of a testing/specing framework that I can actually read in full in one sitting!" -- Piotr Szotkowski Comparing to rspec: rspec is a testing DSL. minitest is ruby. -- Adam Hawkins, "Bow Before MiniTest" minitest doesn't reinvent anything that ruby already provides, like: classes, modules, inheritance, methods. This means you only have to learn ruby to use minitest and all of your regular OO practices like extract-method refactorings still apply. == Features/Problems: * minitest/autorun - the easy and explicit way to run all your tests. * minitest/test - a very fast, simple, and clean test system. * minitest/spec - a very fast, simple, and clean spec system. * minitest/benchmark - an awesome way to assert your algorithm's performance. * minitest/pride - show your pride in testing! * minitest/test_task - a full-featured and clean rake task generator. * Incredibly small and fast runner, but no bells and whistles. * Written by squishy human beings. Software can never be perfect. We will all eventually die.

  • Homepage: https://minite.st/
  • Documentation: http://www.rubydoc.info/gems/minitest/
  • Licenses: MIT
  • Latest release: 6.0.6 (published 3 months ago)
  • Last Synced: 2026-08-11T18:30:30.608Z (2 days ago)
  • Versions: 158
  • Dependent Packages: 13,347
  • Dependent Repositories: 1,177,334
  • Downloads: 1,272,698,642 Total
  • Docker Downloads: 4,955,895,858
  • Rankings:
    • Dependent repos count: 0.002%
    • Docker downloads count: 0.003%
    • Dependent packages count: 0.004%
    • Downloads: 0.011%
    • Average: 0.303%
    • Stargazers count: 0.634%
    • Forks count: 1.163%
  • Maintainers (1)
alpine-v3.18: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.16.3-r0 (published over 3 years ago)
  • Last Synced: 2026-04-16T11:03:26.626Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.842%
    • Forks count: 3.162%
    • Stargazers count: 4.204%
  • Maintainers (1)
alpine-v3.18: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.16.3-r0 (published over 3 years ago)
  • Last Synced: 2026-04-09T02:08:22.369Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.842%
    • Forks count: 3.162%
    • Stargazers count: 4.204%
  • Maintainers (1)
alpine-v3.17: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.15.0-r1 (published about 4 years ago)
  • Last Synced: 2026-04-08T14:07:18.579Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.897%
    • Stargazers count: 3.834%
    • Average: 4.87%
    • Dependent packages count: 12.748%
  • Maintainers (1)
proxy.golang.org: github.com/minitest/minitest

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/minitest/minitest#section-documentation
  • Licenses:
  • Latest release: v6.0.6+incompatible (published 3 months ago)
  • Last Synced: 2026-08-11T18:30:31.765Z (2 days ago)
  • Versions: 151
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 1.218%
    • Stargazers count: 1.226%
    • Average: 5.705%
    • Dependent packages count: 9.576%
    • Dependent repos count: 10.802%
alpine-edge: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-04-03T04:28:51.237Z (4 months ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 4.16%
    • Forks count: 4.289%
    • Average: 5.773%
    • Dependent packages count: 14.641%
  • Maintainers (1)
alpine-edge: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-04-03T04:28:53.349Z (4 months ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Stargazers count: 4.164%
    • Forks count: 4.289%
    • Average: 5.774%
    • Dependent packages count: 14.641%
  • Maintainers (1)
alpine-v3.17: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.15.0-r1 (published about 4 years ago)
  • Last Synced: 2026-04-03T04:40:34.511Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Forks count: 2.897%
    • Stargazers count: 3.834%
    • Average: 8.496%
    • Dependent packages count: 27.254%
  • Maintainers (1)
alpine-v3.20: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.20.0-r0 (published over 2 years ago)
  • Last Synced: 2026-04-08T13:08:04.679Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
guix: ruby-minitest

Small test suite library for Ruby

alpine-v3.23: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-04-14T03:04:35.076Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.22: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-04-03T04:39:04.700Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.21: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.20.0-r0 (published over 2 years ago)
  • Last Synced: 2026-04-03T04:38:49.439Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.21: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.20.0-r0 (published over 2 years ago)
  • Last Synced: 2026-04-03T04:38:48.783Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.22: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-04-03T04:39:07.451Z (4 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.20: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.20.0-r0 (published over 2 years ago)
  • Last Synced: 2026-08-02T01:06:21.866Z (12 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.23: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-08-05T03:03:21.854Z (8 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
alpine-v3.19: ruby-minitest

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-03-21T10:27:38.018Z (5 months ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)
gentoo-portage: dev-ruby/minitest

minitest/unit is a small and fast replacement for ruby's huge and slow test/unit

  • Homepage: https://github.com/minitest/minitest
  • Documentation: https://packages.gentoo.org/packages/dev-ruby/minitest
  • Licenses: MIT
  • Latest release: 6.0.1 (published 4 months ago)
  • Last Synced: 2026-07-29T01:17:19.076Z (16 days ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
alpine-v3.19: ruby-minitest-doc

Suite of testing facilities supporting TDD, BDD, mocking, and benchmarking for Ruby (ri docs)

  • Homepage: https://github.com/minitest/minitest
  • Licenses: MIT
  • Latest release: 5.25.5-r0 (published over 1 year ago)
  • Last Synced: 2026-03-22T15:20:38.365Z (5 months ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
  • Maintainers (1)

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite