[rubygems/rubygems] Enable Style/PercentLiteralDelimiters cop in rubygems

So it matches the style used by bundler.

ab0580fd65
This commit is contained in:
David Rodríguez 2020-03-24 19:51:43 +01:00 committed by Hiroshi SHIBATA
parent f987302cf4
commit ba9dcdab36
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
47 changed files with 302 additions and 302 deletions

View file

@ -33,7 +33,7 @@ class TestGemCommandsWhichCommand < Gem::TestCase
end
assert_equal '', @ui.output
assert_match %r%Can.t find Ruby library file or shared library directory\n%,
assert_match %r{Can.t find Ruby library file or shared library directory\n},
@ui.error
end
@ -51,7 +51,7 @@ class TestGemCommandsWhichCommand < Gem::TestCase
end
assert_equal "#{@foo_bar.full_gem_path}/lib/foo_bar.rb\n", @ui.output
assert_match %r%Can.t find Ruby library file or shared library missinglib\n%,
assert_match %r{Can.t find Ruby library file or shared library missinglib\n},
@ui.error
end
@ -65,7 +65,7 @@ class TestGemCommandsWhichCommand < Gem::TestCase
end
assert_equal '', @ui.output
assert_match %r%Can.t find Ruby library file or shared library missinglib\n%,
assert_match %r{Can.t find Ruby library file or shared library missinglib\n},
@ui.error
end