aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem_specification.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2022-09-07 07:13:04 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-09-08 11:25:03 +0900
commit24fd2f73d0835eea534225a6381551d591764002 (patch)
tree3447658af19fa723e6c2c4c3e5cbdacda430e424 /test/rubygems/test_gem_specification.rb
parent2d57447ae80e0b0895d6d22d606391b48516ba93 (diff)
downloadruby-24fd2f73d0835eea534225a6381551d591764002.tar.gz
Resync Bundler & RubyGems
Diffstat (limited to 'test/rubygems/test_gem_specification.rb')
-rw-r--r--test/rubygems/test_gem_specification.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb
index 8ce8293f33..24a7261466 100644
--- a/test/rubygems/test_gem_specification.rb
+++ b/test/rubygems/test_gem_specification.rb
@@ -1866,9 +1866,9 @@ dependencies: []
def test_full_name_windows
test_cases = {
- "i386-mswin32" => "a-1-x86-mswin32-60",
- "i386-mswin32_80" => "a-1-x86-mswin32-80",
- "i386-mingw32" => "a-1-x86-mingw32",
+ "i386-mswin32" => "a-1-x86-mswin32-60",
+ "i386-mswin32_80" => "a-1-x86-mswin32-80",
+ "i386-mingw32" => "a-1-x86-mingw32",
}
test_cases.each do |arch, expected|
@@ -1969,10 +1969,10 @@ dependencies: []
assert_equal Gem::Platform::RUBY, @a1.platform
test_cases = {
- "i386-mswin32" => ["x86", "mswin32", "60"],
+ "i386-mswin32" => ["x86", "mswin32", "60"],
"i386-mswin32_80" => ["x86", "mswin32", "80"],
- "i386-mingw32" => ["x86", "mingw32", nil ],
- "x86-darwin8" => ["x86", "darwin", "8" ],
+ "i386-mingw32" => ["x86", "mingw32", nil ],
+ "x86-darwin8" => ["x86", "darwin", "8" ],
}
test_cases.each do |arch, expected|
@@ -3449,10 +3449,10 @@ Did you mean 'Ruby'?
@m1 = quick_gem "m", "1" do |s|
s.files = %w[lib/code.rb]
s.metadata = {
- "one" => "two",
- "home" => "three",
+ "one" => "two",
+ "home" => "three",
"homepage_uri" => "https://example.com/user/repo",
- "funding_uri" => "https://example.com/donate",
+ "funding_uri" => "https://example.com/donate",
}
end