minitest

minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking. (by minitest)

Minitest Alternatives

Similar projects and alternatives to minitest

  1. React

    1,929 minitest VS React

    The library for web and native user interfaces.

  2. Judoscale

    Save 47% on cloud hosting with autoscaling that just works. Judoscale integrates with Rails, Sidekiq, Solid Queue, and more to make autoscaling easy and reliable. Save big, and say goodbye to request timeouts and backed-up job queues.

    Judoscale logo
  3. Express

    774 minitest VS Express

    Fast, unopinionated, minimalist web framework for node.

  4. Ruby on Rails

    Ruby on Rails

  5. Django

    528 minitest VS Django

    The Web framework for perfectionists with deadlines.

  6. jest

    520 minitest VS jest

    Delightful JavaScript Testing.

  7. ESLint

    428 minitest VS ESLint

    Find and fix problems in your JavaScript code.

  8. lodash

    212 minitest VS lodash

    A modern JavaScript utility library delivering modularity, performance, & extras.

  9. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. Devise

    101 minitest VS Devise

    Flexible authentication solution for Rails with Warden.

  11. Sidekiq

    98 minitest VS Sidekiq

    Simple, efficient background processing for Ruby

  12. requests

    93 minitest VS requests

    A simple, yet elegant, HTTP library.

  13. ramda

    84 minitest VS ramda

    :ram: Practical functional Javascript

  14. OkHttp

    50 minitest VS OkHttp

    Square’s meticulous HTTP client for the JVM, Android, and GraalVM.

  15. faker

    45 minitest VS faker

    A library for generating fake data such as names, addresses, and phone numbers. (by faker-ruby)

  16. Puma

    43 minitest VS Puma

    A Ruby/Rack web server built for parallelism

  17. tigerbeetle

    Discontinued A distributed financial accounting database designed for mission critical safety and performance. [Moved to: https://github.com/tigerbeetledb/tigerbeetle] (by coilhq)

  18. Box2D

    Box2D is a 2D physics engine for games

  19. LevelDB

    29 minitest VS LevelDB

    LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.

  20. rspec-rails

    RSpec for Rails 7+

  21. dotenv

    23 minitest VS dotenv

    A Ruby gem to load environment variables from `.env`. (by bkeepers)

  22. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better minitest alternative or higher similarity.

minitest discussion

Log in or Post with

minitest reviews and mentions

Posts with mentions or reviews of minitest. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-16.
  • 30,656 Pages of Books About the .NET Ecosystem: C#, Blazor, ASP.NET, & T-SQL
    6 projects | dev.to | 16 Mar 2025
    I am very comfortable with Minitest in Ruby. When I started to learn Rails, though, I was surprised by how different RSpec was. In case .NET testing is equally unlike the xUnit style, I should learn the idioms.
  • 3 useful VS Code extensions for testing Ruby code
    2 projects | dev.to | 8 Nov 2024
    It supports both RSpec and Minitest as well as any other testing gem. There are flexible configurations options which allow to configure editor with needed testing tool.
  • Is the VCR plugged in? Common Sense Troubleshooting For Web Devs
    6 projects | dev.to | 10 Jul 2024
    5. Automated Tests: Unit tests are automated tests that verify the behavior of a small unit of code in isolation. I like to write unit tests for every bug reported by a user. This way, I can reproduce the bug in a controlled environment and verify that the fix works as expected and that we wont see a regression. There are many different JavaScript test frameworks like Jest, cypress, mocha, and jasmine. We use Rspec and Minitest for unit and integration tests in our rails application.
  • Test Driving a Rails API - Part Two
    7 projects | dev.to | 21 Mar 2024
    In this part, we’ll set up our testing environment so that we can test our Rails API using minitest with minitest/spec. We’ll look at the differences between traditional style unit tests and spec-style tests, or specs. I’ll demonstrate why you should use minitest-rails. We’ll look at using rack-test for testing our API. We’ll even create our own generator to generate API specs.
  • Where can I learn to deliver a proper solution?
    3 projects | /r/ruby | 8 Apr 2023
    I forgot to mention that reading code is also a good way to learn how to write code, it's like inspiration. Check repos of some gems you like. For example sidekiq https://github.com/sidekiq/sidekiq/tree/main/lib/sidekiq Or minitest https://github.com/minitest/minitest/tree/master/lib/minitest
  • I_suck_and_my_tests_are_order_dependent
    9 projects | news.ycombinator.com | 16 Feb 2023
    All through GitHub.

    1. From https://github.com/rails/rails/blob/6ffb29d24e05abbd9ffe3ea9..., click "Blame" on the header bar over the file contents.

    2. Scroll down to the line and click on the commit in the left column.

    3. Scroll down to the file that removed the line from its previous file, activesupport/lib/active_support/test_case.rb.

    4. Click the three-dots menu in that file's header bar and select "View file".

    5. Click "History" in the header bar of the contributors, above the file contents.

    6. I guessed here at commit 281f488 on its message: "Use the method provided by minitest to make tests order dependent". There's a comment here that identified the problem which led to, and provided context for, the change in 6ffb29d.

    The OP is from minitest's documentation, so to find the introduction in minitest, it's basically the same process.

    1. Go to https://github.com/minitest/minitest.

    2. Search the repo for the method name. Even just "i_suck" will match the commit.

    3. Select the oldest commit in the results. That's a4553e2.

  • Minitest, we've been doing it wrong?
    4 projects | /r/ruby | 2 Oct 2022
    The new test convention is now "test/**/test_*.rb" instead of "test/**/*_test.rb". For example, Puma and Minitest are popular repositories using this naming pattern.
  • Ask HN: Codebases with great, easy to read code?
    35 projects | news.ycombinator.com | 21 Mar 2022
    https://github.com/seattlerb/minitest really removed the FUD for me when i started learning Ruby and Rails. Its full of metaprogramming and fancy tricks but is also quite small, practical and informal in its style.

    e.g. "assert_equal" is really just "expected == actual" at it's core but it uses both both a block param (a kind of closure) for composing a default message and calls "diff" which is a dumb wrapper around the system "diff" utility (horrors!). There is even some evolved nastiness in there for an API change that uses the existing assert/refute logic to raise an informative message. this is handled with a simple if and not some sort of complex hard-to-follow factory pattern or dependency injection misuse.

    https://github.com/seattlerb/minitest/blob/master/lib/minite...

  • 49 Days of Ruby: Day 46 -- Testing Frameworks: Minitest
    1 project | dev.to | 11 May 2021
    Those are just a few examples of what you can do with Minitest! Check out their README on GitHub and keep on exploring.
  • Ruby through the lens of Go
    9 projects | dev.to | 16 Apr 2021
    One of the things I love the most about Ruby is that it tends to coalesce around one or two really popular libraries. Rails is the big one obviously, but over time you see libraries designed for a particular purpose "winning" over other things. This includes things like linting/code analysis (Rubocop), authentication (Devise), testing (RSpec and Minitest) and more. The emphasis is on making something good great rather than making a lot of different good things.
  • A note from our sponsor - InfluxDB
    influxdata.com | 29 Apr 2025
    Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems. Learn more →

Stats

Basic minitest repo stats
13
3,325
7.8
about 2 months ago

Sponsored
Save 47% on cloud hosting with autoscaling that just works
Judoscale integrates with Rails, Sidekiq, Solid Queue, and more to make autoscaling easy and reliable. Save big, and say goodbye to request timeouts and backed-up job queues.
judoscale.com

Did you know that Ruby is
the 12th most popular programming language
based on number of references?