GithubHelp home page GithubHelp logo

purdytest's Introduction

purdytest

DESCRIPTION:

Purdytest extends minitest with pretty colors. Simply require minitest, then require purdytest, and you have colorific output on your terminal!

For colorized diff output, make sure you have ‘colordiff` installed.

FEATURES/PROBLEMS:

SYNOPSIS:

require 'minitest/autorun' # from minitest
require 'purdytest'

describe 'my amazing test' do
  # generate many green dots!
  50.times do |i|
    it "must #{i}" do
      100.must_equal 100
    end
  end

  # generate some red Fs!
  2.times do |i|
    it "compares #{i} to #{i + 1}" do
      i.must_equal i + 1
    end
  end

  it 'does stuff and shows a diff' do
    [1,2,3,4,5].must_equal %w{ a quick brown fox jumped over something! }
  end

  it 'does stuff and shows yellow' do
    skip "don't care!"
  end
end

Output color can be somewhat configured via Purdytest.configure:

require 'minitest/autorun' # from minitest
require 'purdytest'

Purdytest.configure do |io|
  io.pass = :blue
end

describe 'my amazing test' do
  # generate many green dots!
  50.times do |i|
    it "must #{i}" do
      100.must_equal 100
    end
  end
end

For a list of possible configuration options, just check out the purdytest source code.

REQUIREMENTS:

INSTALL:

  • gem install purdytest

  • brew install colordiff

LICENSE:

(The MIT License)

Copyright © 2011 Aaron Patterson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

purdytest's People

Contributors

tenderlove avatar

Stargazers

Matt Petty avatar Josh Teneycke avatar Clément Joubert avatar Richardson Dackam avatar Sean Huber avatar Robb Shecter avatar Vojtěch Kusý avatar ahmad seleem avatar Jordan avatar Jo Liss avatar Simon Perepelitsa avatar  avatar Steven Chanin avatar Lin He avatar Eric Milford avatar Thomas Ingram avatar George Bellos avatar victor christensen avatar fabrizio avatar Hamza Khan-Cheema avatar  avatar Bruno Michel avatar David Aaron Fendley avatar

Watchers

 avatar James Cloos avatar  avatar

purdytest's Issues

minitest 3+ ?

depends on 2.2, any chance to loosen this requirement ?

undefined method `output'

I get an error when running your README script example:

ruby-1.9.2 me@mbp:ruby $ ruby test.rb 
/Users/me/.rvm/gems/ruby-1.9.2-p180/gems/purdytest-1.0.0/lib/purdytest.rb:53:in `<top (required)>': undefined method `output' for MiniTest::Unit:Class (NoMethodError)
    from <internal:lib/rubygems/custom_require>:33:in `require'
    from <internal:lib/rubygems/custom_require>:33:in `rescue in require'
    from <internal:lib/rubygems/custom_require>:29:in `require'
    from test.rb:2:in `<main>'

Seems to conflict with cover_me

Changes path of coverage.data to /coverage.data in which I get:
lib/cover_me/results.rb:34:in `initialize': Permission denied - /coverage.data (Errno::EACCES)

Removing purdytest fixes this issue. I will try to isolate some more in a smaller project and update this issue with more details and reproduce steps.

*** LOCAL GEMS ***
cover_me (1.2.0)
purdytest (1.0.0)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.