1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Skip integration test for rake package task.

https://github.com/rubygems/rubygems/commit/ca8afc01a3
This commit is contained in:
Hiroshi SHIBATA 2019-07-27 15:45:45 +08:00
parent ab8d9a5325
commit 2a81d3a26a
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -6,6 +6,8 @@ require "open3"
class TestRakePackage < Minitest::Test
def test_builds_ok
skip unless File.exists?(File.expand_path("../../../Rakefile", __FILE__))
output, status = Open3.capture2e("rake package")
assert_equal true, status.success?, <<~MSG.chomp