retest VS minitest

Compare retest vs minitest and see what are their differences.

retest

A simple CLI to watch file changes and run their matching ruby specs. Works on any ruby projects with no setup. (by AlexB52)

minitest

minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking. (by minitest)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
retest minitest
6 10
121 3,243
- 0.2%
7.4 8.0
about 2 months ago 23 days ago
Ruby Ruby
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

retest

Posts with mentions or reviews of retest. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-02.
  • Minitest, we've been doing it wrong?
    4 projects | /r/ruby | 2 Oct 2022
    Whatever you choose Retest (a gem I maintain) will acknowledge both naming conventions out of the box to increase the number of compatible Ruby projects. This is done in release 1.10.0. For example, you can now use Retest with Puma.
  • For those using VSCode, is there a faster way to run "rspec" on the file shown in my active tab (a _spec.rb file)?
    1 project | /r/ruby | 26 Jul 2022
    I created a gem: Retest which works on the terminal. A bit like Guard without any setup. The gem is smart enough to find the correct file to test after you save any.rb file.
  • Is using the gem Guard still state of the art in TDD with Ruby?
    5 projects | /r/ruby | 26 Sep 2021
    I use retest. It works on every standard Ruby projects with no setup (understand no .Guardfile or Gemfile update). If you follow rspec, rails, rake or ruby standard file structure you get running in less than a minute. As a contractor I can checkout any repo and start TDD without caring about the repo setup. I use it even when Guard is already installed because the experience is consistent across all projects. It also has a —diff option that runs only spec files relevant from the diffs with another branch to run a final check before creating a pull request and triggering the whole test suite on CI.
  • Any love for MiniTest?
    1 project | /r/rails | 30 May 2021
    But whatever the project I’m working on is, I always try using retest https://github.com/AlexB52/retest for awesome refactoring and TDD because it works with both Minitest and RSpec out of the box. Sorry for the shameless promotion.
  • Can I run guard without adding it to a project?
    1 project | /r/ruby | 12 Feb 2021
    Hi, I have created a gem called retest that helps you run specs after a file change without adding any configuration files to a repo. I created it for the specific reason you’re mentioning as I work in a consultancy. It is supposed to be dev centric and works with any ruby projects. I use it while working or refactoring. It might suits you, have a look
  • Refactoring in Ruby
    2 projects | /r/ruby | 3 Feb 2021
    A great book by Sandi Metz is 99 bottles of OOP in Ruby where she explains heaps about refactoring. One of the best book I have read. I know you asked for article or videos but if you have time, it takes a day or two to read. I made a gem to help people refactor the same way she describes in the book. It will speed up your feedback loop when refactoring: retest

minitest

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 2024-03-21.
  • 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.
  • Best way to learn testing in RSpec?
    1 project | /r/rails | 31 Mar 2021
    Then try minitest (unit and spec verisons) https://github.com/seattlerb/minitest

What are some alternatives?

When comparing retest and minitest you can also consider the following projects:

entr - Run arbitrary commands when files change

Test::Unit - test-unit

Puma - A Ruby/Rack web server built for parallelism

RSpec - RSpec meta-gem that depends on the other components

rerun - Restarts an app when the filesystem changes. Uses growl and FSEventStream if on OS X.

Cucumber - A home for issues that are common to multiple cucumber repositories

vim-test - Run your tests at the speed of thought

Pundit Matchers - A set of RSpec matchers for testing Pundit authorisation policies.

Rubocop - A Ruby static code analyzer and formatter, based on the community Ruby style guide. [Moved to: https://github.com/rubocop/rubocop]

shoulda-matchers - Simple one-liner tests for common Rails functionality

rubygems - Library packaging and distribution for Ruby.

Aruba - Test command-line applications with Cucumber-Ruby, RSpec or Minitest.