mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ec84bfc9e3
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30752 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
65 lines
1.7 KiB
Ruby
65 lines
1.7 KiB
Ruby
######################################################################
|
|
# This file is imported from the rubygems project.
|
|
# DO NOT make modifications in this repo. They _will_ be reverted!
|
|
# File a patch instead and assign it to Ryan Davis or Eric Hodel.
|
|
######################################################################
|
|
|
|
require 'rubygems/test_case'
|
|
require 'rubygems'
|
|
require 'rubygems/package_task'
|
|
|
|
class TestGemPackageTask < Gem::TestCase
|
|
|
|
def test_gem_package
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
g.files = Rake::FileList["x"].resolve
|
|
end
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
assert_equal ["x", "y"], pkg.package_files
|
|
end
|
|
|
|
def test_gem_package_with_current_platform
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
g.files = Rake::FileList["x"].resolve
|
|
g.platform = Gem::Platform::CURRENT
|
|
end
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
assert_equal ["x", "y"], pkg.package_files
|
|
end
|
|
|
|
def test_gem_package_with_ruby_platform
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = "pkgr"
|
|
g.version = "1.2.3"
|
|
g.files = Rake::FileList["x"].resolve
|
|
g.platform = Gem::Platform::RUBY
|
|
end
|
|
pkg = Gem::PackageTask.new(gem) do |p|
|
|
p.package_files << "y"
|
|
end
|
|
assert_equal ["x", "y"], pkg.package_files
|
|
end
|
|
|
|
def test_package_dir_path
|
|
gem = Gem::Specification.new do |g|
|
|
g.name = 'nokogiri'
|
|
g.version = '1.5.0'
|
|
g.platform = 'java'
|
|
end
|
|
|
|
pkg = Gem::PackageTask.new gem
|
|
pkg.define
|
|
|
|
assert_equal 'pkg/nokogiri-1.5.0-java', pkg.package_dir_path
|
|
end
|
|
|
|
end
|
|
|