clean_reporter 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5aeb30c43cd57e2acc51984540baec2e656445bb4f4d1f0f1e0acef2e3722d9a
4
+ data.tar.gz: c408d6feb3de0ae1c7a44b4e44fc4620e13867d67011bff9d05be2128b880507
5
+ SHA512:
6
+ metadata.gz: adeb89f6691b5a5e1fb5c3733797d903f86d1b4335951900461d0454a27b71f5f646576773796b474f66e31d87721ff1e8d4e0600bded7fdfefaab4f1b8cb7d4
7
+ data.tar.gz: 061baff79ad5f49add237f2383ddf0f4d384f4095cf5bd30a7273abc2b262e9818cc7f9944a5b8400ad89ca7d48f2e55ec66d60bdfe62e2eef2403f3fbf7a3fc
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.1
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/standardrb/standard
3
+ ruby_version: 3.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Andy Waite
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # clean_reporter
2
+
3
+ This gem is an opinionated reporter for minitest with the intention of reducing visual clutter.
4
+
5
+ By default minitest will show the test duration to 6 decimal places, along with statistics on the test run.
6
+
7
+ ```
8
+ Finished in 0.005735s, 3836.0942 runs/s, 3836.0942 assertions/s.
9
+ ```
10
+
11
+ While that information might be occasionally useful, usually we are just interested to know if the tests are passing or not.
12
+
13
+ clean_reporter reduces the above output to just:
14
+
15
+ ```
16
+ Finished tests in 0.0s
17
+ ```
18
+
19
+ (I have idea for improvements, but that's all for this initial release)
20
+
21
+ ## Implementation Notes
22
+
23
+ For convenience this is built this on top of [minitest-reporters](https://github.com/minitest-reporters/minitest-reporters) but it should be possible to re-write it without that dependency.
24
+
25
+ ## Installation
26
+
27
+ Add `clean_reporter` as a development dependency in your `Gemfile`.
28
+
29
+ Then in your `test_helper.rb` add:
30
+
31
+ ```ruby
32
+ require "clean_reporter"
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ Run your tests in the normal way.
38
+
39
+ ## Development
40
+
41
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
42
+
43
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
44
+
45
+ ## Contributing
46
+
47
+ Bug reports and pull requests are welcome on GitHub at https://github.com/andyw8/clean_reporter.
48
+
49
+ ## License
50
+
51
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[test standard]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CleanReporter
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "clean_reporter/version"
4
+ require "minitest/reporters"
5
+
6
+ module CleanReporter
7
+ class Error < StandardError; end
8
+
9
+ class Reporter < Minitest::Reporters::DefaultReporter
10
+ def on_report
11
+ status_line = "Finished tests in %.1fs" % [total_time]
12
+
13
+ puts
14
+ puts
15
+ puts colored_for(suite_result, status_line)
16
+ puts
17
+
18
+ unless @fast_fail
19
+ tests.reject(&:passed?).each do |test|
20
+ print_failure(test)
21
+ end
22
+ end
23
+
24
+ if @slow_count > 0
25
+ slow_tests = tests.sort_by(&:time).reverse.take(@slow_count)
26
+
27
+ puts
28
+ puts "Slowest tests:"
29
+ puts
30
+
31
+ slow_tests.each do |test|
32
+ puts "%.6fs %s#%s" % [test.time, test.name, test_class(test)]
33
+ end
34
+ end
35
+
36
+ if @slow_suite_count > 0
37
+ slow_suites = @suite_times.sort_by { |x| x[1] }.reverse.take(@slow_suite_count)
38
+
39
+ puts
40
+ puts "Slowest test classes:"
41
+ puts
42
+
43
+ slow_suites.each do |slow_suite|
44
+ puts "%.6fs %s" % [slow_suite[1], slow_suite[0]]
45
+ end
46
+ end
47
+
48
+ puts
49
+ print colored_for(suite_result, result_line)
50
+ puts
51
+ end
52
+ end
53
+ end
54
+
55
+ Minitest::Reporters.use!([CleanReporter::Reporter.new(color: true)])
@@ -0,0 +1,4 @@
1
+ module CleanReporter
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: clean_reporter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Andy Waite
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-03-21 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: minitest-reporters
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: 1.7.1
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: 1.7.1
26
+ email:
27
+ - andyw8@users.noreply.github.com
28
+ executables: []
29
+ extensions: []
30
+ extra_rdoc_files: []
31
+ files:
32
+ - ".ruby-version"
33
+ - ".standard.yml"
34
+ - LICENSE.txt
35
+ - README.md
36
+ - Rakefile
37
+ - lib/clean_reporter.rb
38
+ - lib/clean_reporter/version.rb
39
+ - sig/clean_reporter.rbs
40
+ homepage: https://github.com/andyw8/clean_reporter
41
+ licenses:
42
+ - MIT
43
+ metadata:
44
+ allowed_push_host: https://rubygems.org
45
+ homepage_uri: https://github.com/andyw8/clean_reporter
46
+ source_code_uri: https://github.com/andyw8/clean_reporter
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 3.1.0
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubygems_version: 3.6.2
62
+ specification_version: 4
63
+ summary: A clean reporter for minitest
64
+ test_files: []