An open API service indexing awesome lists of open source software.

https://github.com/codewars/minitest-reporters-codewars

Minitest reporter for Codewars
https://github.com/codewars/minitest-reporters-codewars

code-runner ruby test-reporting

Last synced: 3 months ago
JSON representation

Minitest reporter for Codewars

Awesome Lists containing this project

README

        

# Minitest::Reporters::Codewars

`test/test_helper.rb`:
```ruby
require "minitest/reporters"
require "minitest/reporters/codewars"
Minitest::Reporters.use! Minitest::Reporters::Codewars.new
```

Write tests in files matching pattern `test/*_test.rb`.

Run all tests:
```bash
ruby -Ilib -Itest -r 'test_helper' -e 'ARGV.each { |f| require f }' ./test/*_test.rb
```