Skip to content

Commit

Permalink
Copy files specific to testing rubygems to test
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez committed May 26, 2021
1 parent 9e2c1ea commit aa390a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Manifest.txt
Expand Up @@ -380,7 +380,6 @@ lib/rubygems/install_default_message.rb
lib/rubygems/install_message.rb
lib/rubygems/install_update_options.rb
lib/rubygems/installer.rb
lib/rubygems/installer_test_case.rb
lib/rubygems/installer_uninstaller_utils.rb
lib/rubygems/local_remote_options.rb
lib/rubygems/mock_gem_ui.rb
Expand All @@ -395,7 +394,6 @@ lib/rubygems/package/source.rb
lib/rubygems/package/tar_header.rb
lib/rubygems/package/tar_reader.rb
lib/rubygems/package/tar_reader/entry.rb
lib/rubygems/package/tar_test_case.rb
lib/rubygems/package/tar_writer.rb
lib/rubygems/package_task.rb
lib/rubygems/path_support.rb
Expand Down Expand Up @@ -488,8 +486,6 @@ lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem
lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem
lib/rubygems/stub_specification.rb
lib/rubygems/syck_hack.rb
lib/rubygems/test_case.rb
lib/rubygems/test_utilities.rb
lib/rubygems/text.rb
lib/rubygems/uninstaller.rb
lib/rubygems/unknown_command_spell_checker.rb
Expand Down Expand Up @@ -530,6 +526,7 @@ test/rubygems/good_rake.rb
test/rubygems/grandchild_cert.pem
test/rubygems/grandchild_cert_32.pem
test/rubygems/grandchild_key.pem
test/rubygems/installer_test_case.rb
test/rubygems/invalid_client.pem
test/rubygems/invalid_issuer_cert.pem
test/rubygems/invalid_issuer_cert_32.pem
Expand All @@ -539,6 +536,7 @@ test/rubygems/invalid_signer_cert_32.pem
test/rubygems/invalidchild_cert.pem
test/rubygems/invalidchild_cert_32.pem
test/rubygems/invalidchild_key.pem
test/rubygems/package/tar_test_case.rb
test/rubygems/packages/ascii_binder-0.1.10.1.gem
test/rubygems/plugin/exception/rubygems_plugin.rb
test/rubygems/plugin/load/rubygems_plugin.rb
Expand All @@ -559,6 +557,7 @@ test/rubygems/specifications/rubyforge-0.0.1.gemspec
test/rubygems/ssl_cert.pem
test/rubygems/ssl_key.pem
test/rubygems/test_bundled_ca.rb
test/rubygems/test_case.rb
test/rubygems/test_config.rb
test/rubygems/test_deprecate.rb
test/rubygems/test_gem.rb
Expand Down Expand Up @@ -691,6 +690,7 @@ test/rubygems/test_kernel.rb
test/rubygems/test_project_sanity.rb
test/rubygems/test_remote_fetch_error.rb
test/rubygems/test_require.rb
test/rubygems/test_utilities.rb
test/rubygems/wrong_key_cert.pem
test/rubygems/wrong_key_cert_32.pem
test/test_changelog_generator.rb
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/rubygems/test_case.rb → test/rubygems/test_case.rb
Expand Up @@ -1300,7 +1300,7 @@ def self.rubybin
end

def ruby_with_rubygems_in_load_path
[Gem.ruby, "-I", File.expand_path("..", __dir__)]
[Gem.ruby, "-I", File.expand_path("../../lib", __dir__)]
end

def with_clean_path_to_ruby
Expand Down
File renamed without changes.

2 comments on commit aa390a3

@nobu
Copy link
Contributor

@nobu nobu commented on aa390a3 Jun 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has broken a test in rdoc.
These files under "lib/rubygems" have been a part of the public APIs.

@deivid-rodriguez
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you link to the failing test? I assumed this was used to test rdoc's rubygems plugin? Maybe we can expose something smaller for that.

Please sign in to comment.