diff options
author | YO4 <[email protected]> | 2025-01-24 21:48:12 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-03-19 01:28:59 +0900 |
commit | f220866c39d12da8fffd9b41db8bf4b8dc80b74e (patch) | |
tree | 539c8d8b445f02dda4b24b6f5f84c31cf1997de3 | |
parent | 0f6c647b1a1e313e3cb4fe79d4b63ffa2b7a6a6e (diff) |
Explicitly place a regular expression
Co-authored-by: Nobuyoshi Nakada <[email protected]>
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/12622
-rw-r--r-- | spec/ruby/core/exception/system_call_error_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/ruby/core/exception/system_call_error_spec.rb b/spec/ruby/core/exception/system_call_error_spec.rb index ea54e1ad4c..32dc95492f 100644 --- a/spec/ruby/core/exception/system_call_error_spec.rb +++ b/spec/ruby/core/exception/system_call_error_spec.rb @@ -25,7 +25,7 @@ describe "SystemCallError.new" do @example_errno_class = Errno::EINVAL @last_known_errno = Errno.constants.size - 1 @unknown_errno = Errno.constants.size - @some_human_readable = "[[:graph:]]+" + @some_human_readable = /[[:graph:]]+/ end it "requires at least one argument" do @@ -97,11 +97,11 @@ describe "SystemCallError.new" do end it "sets an 'unknown error' message when an unknown error number" do - SystemCallError.new(-1).message.should =~ Regexp.new(@some_human_readable) + SystemCallError.new(-1).message.should =~ @some_human_readable end it "adds a custom error message to an 'unknown error' message when an unknown error number and a custom message specified" do - SystemCallError.new("custom message", -1).message.should =~ Regexp.new("#{@some_human_readable}.* - custom message") + SystemCallError.new("custom message", -1).message.should =~ /#{@some_human_readable}.* - custom message/ end it "converts to Integer if errno is a Complex convertible to Integer" do @@ -142,7 +142,7 @@ describe "SystemCallError#message" do SystemCallError.new(2**28).message.should =~ /Error .*occurred/i end platform_is_not :aix do - SystemCallError.new(2**28).message.should =~ Regexp.new(@some_human_readable) + SystemCallError.new(2**28).message.should =~ @some_human_readable end end |