项目作者: rspec-3-book

项目描述 :
Tweaks the built-in RSpec formatters to cause failures to be printed immediately when they occur.
高级语言: Ruby
项目地址: git://github.com/rspec-3-book/rspec-print_failures_eagerly.git
创建时间: 2016-10-05T07:00:41Z
项目社区:https://github.com/rspec-3-book/rspec-print_failures_eagerly

开源协议:MIT License

下载


RSpec::PrintFailuresEagerly Gem Version

This gem, featured in Effective Testing with RSpec 3: Build Ruby Apps with
Confidence
,
modifies the built-in progress and documentation formatters to make
them print failures eagerly, when they happen, rather than waiting
until the end to print them all. This can be handy for long-running spec
suites so you can begin digging into a failure while the rest of your
suite finishes running.

Installation

Add this line to your application’s Gemfile:

  1. gem 'rspec-print_failures_eagerly'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install rspec-print_failures_eagerly

Usage

Just load it from spec/spec_helper.rb:

  1. require 'rspec/print_failures_eagerly'

…or tell RSpec to require it by putting it in .rspec:

  1. --require rspec/print_failures_eagerly

That’s it! The book also walks through how to set it up to
automatically apply to all projects on your machine, without
needing to add this gem to each.

License

The gem is available as open source under the terms of the MIT License.