Merged
Conversation
Member
|
How about this? diff --git a/lib/test/unit/autorunner.rb b/lib/test/unit/autorunner.rb
index 557b560..dafbba0 100644
--- a/lib/test/unit/autorunner.rb
+++ b/lib/test/unit/autorunner.rb
@@ -6,6 +6,7 @@ require_relative "priority"
require_relative "attribute-matcher"
require_relative "testcase"
require_relative "test-suite-thread-runner"
+require_relative "version"
module Test
module Unit
@@ -206,6 +207,8 @@ module Test
def options
@options ||= OptionParser.new do |o|
+ o.version = VERSION
+
o.banner = "Test::Unit automatic runner."
o.banner += "\nUsage: #{$0} [options] [-- untouched arguments]"
|
Co-authored-by: Sutou Kouhei <[email protected]>
Contributor
Author
|
Thanks for the suggestion. I didn't know that |
Contributor
|
@MSP-Greg test-unit 3.6.9 has been released. Please check it out! |
Contributor
Author
|
Thanks for quick release. When https://github.com/ruby/ruby/blob/master/gems/bundled_gems is updated, we'll update scripts that check for the test-unit binstub. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Recently there have been some issues in Ruby head with binstubs. The following output is from https://github.com/ruby/ruby-dev-builder/actions/runs/15884945465/job/44794519509:
Like to add
test-unitto the CLI test, and having a version option makes for a simple check.