Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hsbt/minitest-power_assert
Power Assert for Minitest
https://github.com/hsbt/minitest-power_assert
Last synced: 14 days ago
JSON representation
Power Assert for Minitest
- Host: GitHub
- URL: https://github.com/hsbt/minitest-power_assert
- Owner: hsbt
- License: other
- Created: 2014-06-01T05:14:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-01-30T05:20:28.000Z (almost 5 years ago)
- Last Synced: 2024-10-29T09:29:32.434Z (16 days ago)
- Language: Ruby
- Homepage:
- Size: 33.2 KB
- Stars: 118
- Watchers: 6
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Minitest::PowerAssert
[![Gem Version](https://badge.fury.io/rb/minitest-power_assert.svg)](https://rubygems.org/gems/minitest-power_assert)
[![Build Status](https://travis-ci.org/hsbt/minitest-power_assert.svg)](https://travis-ci.org/hsbt/minitest-power_assert)A Power Assert implementation for Minitest. This gem is inspired by the [test-unit-power_assert](https://github.com/k-tsj/test-unit-power_assert) gem.
## Installation
Add this line to your application's Gemfile:
gem 'minitest-power_assert'
And then execute:
$ bundle
Or install it yourself as:
$ gem install minitest-power_assert
## Usage
see [testcase](https://github.com/hsbt/minitest-power_assert/blob/master/test/test_power_assert.rb)
### Basic Testcase
The `minitest-power_assert` gem overrides the `#assert` method. In order to use power assert, call the assert method with a block:
```ruby
class TestPowerAssert < Minitest::Test
def test_power_assert_failed
assert { "0".class == "3".to_i.times.map {|i| i + 1 }.class }
end
end
```If the test above fails, it displays a test result with detailed information about variables:
```shell
1) Failure:
TestPowerAssert#test_power_assert_failed [test/test_power_assert.rb:10]:
assert { "0".class == "3".to_i.times.map {|i| i + 1 }.class }
| | | | |
| | | | Array
| | | [1, 2, 3]
| | #
| 3
String
```## Contributing
1. Fork it ( https://github.com/hsbt/minitest-power_assert/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request