No commit activity in last 3 years
No release in over 3 years
Prints a Nyan Cat trail for your test output
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Uses @mattsears's Nyan Cat Formatter and code copied from @tenderlove's minitest-emoji.

minitest-nyan-cat

http://github.com/tgxworld/minitest-nyan-cat

DESCRIPTION:

Prints a Nyan Cat trail for your test output

INSTALL:

gem install minitest-nyan-cat

SYNOPSIS:

  require 'minitest/autorun'
  require 'minitest/nyan_cat'

  describe 'my amazing tests' do
    200.times do |i|
      it "must #{i}" do
        100.must_equal 100
      end
    end

    2.times do |i|
      it "compares #{i} to #{i + 1}" do
        i.must_equal i + 1
      end
    end

    it 'skips things!!' do
      skip "don't care!"
    end
  end

RAILS:

Add gem 'minitest-nyan-cat', group: :test to your Gemfile and run bundle install`.

Following which, add require 'minitest/nyan_cat' to your test_helper.rb.