Skip to content

Commit

Permalink
[rubygems/rubygems] Get rake package tested
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez authored and hsbt committed Jul 30, 2019
1 parent bb6bd7e commit 61893dd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/rubygems/test_rake_package.rb
@@ -0,0 +1,14 @@
# frozen_string_literal: true

require "rubygems/test_case"
require "open3"

class TestRakePackage < Minitest::Test

def test_builds_ok
output, status = Open3.capture2e("rake package")

assert_equal true, status.success?, "Expected `rake package` to work, but got errors: #{output}"
end

end

0 comments on commit 61893dd

Please sign in to comment.