This is a package for some assert views based on the old test-unit style output. For use with Assert ~>0.8.
This is a view that outputs test result info much like the original test/unit framework output its results. Not every detail can be reproduced exactly because assert tracks result data in more detail and this view shows its results using that full detail.
This view adds simple colored output to the TestUnitView
. Not every
detail can be reproduced exactly because assert tracks result data in more
detail and this view shows its results using that full detail.
This view is identical to the TestUnitView, except:
- each result abbreviation is colored
- each detailed result has its name colored
- the results_breakdown_statement is colored
It is designed based on the redgreen gem.
The easiest way to install is to clone this repo into your ~/.assert/views
dir:
cd ~/.assert/views
git clone git://github.com/kellyredding/assert-view-testunit.git
See the Assert README for details on using 3rd party assert views. https://github.com/teaminsight/assert#using-3rd-party-views
If the view package has been installed to the user assert views dir as shown above, require it in your options file and set it as the view:
# in ~/.assert/options.rb
Assert::View.require_user_view 'assert-view-testunit'
Assert.options.view Assert::View::TestUnitView.new($stdout)
# or...
Assert.options.view Assert::View::RedgreenView.new($stdout)
That's about it. Run your assert test suite and see the new view in action.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request