diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-09-30 19:10:16 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-09-30 19:10:16 +0900 |
commit | 81d26814be036a7b15c587d1e1832d9ddd24601e (patch) | |
tree | 8b2b90dfe32b777739ea43fe7bfd2d5f6527448e | |
parent | 8cd36a6dab170f4127c58c07b1a388dd3813fb7a (diff) |
Update test args with bundled gems. webrick has been removed that targets
-rw-r--r-- | test/test_bundled_gems.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_bundled_gems.rb b/test/test_bundled_gems.rb index 36f7324336..19546dd296 100644 --- a/test/test_bundled_gems.rb +++ b/test/test_bundled_gems.rb @@ -12,8 +12,8 @@ class TestBundlerGem < Gem::TestCase end def test_warning - assert Gem::BUNDLED_GEMS.warning?("rss", specs: {}) - assert_nil Gem::BUNDLED_GEMS.warning?("rss", specs: {}) + assert Gem::BUNDLED_GEMS.warning?("csv", specs: {}) + assert_nil Gem::BUNDLED_GEMS.warning?("csv", specs: {}) end def test_no_warning_warning @@ -22,7 +22,7 @@ class TestBundlerGem < Gem::TestCase end def test_warning_libdir - path = File.join(::RbConfig::CONFIG.fetch("rubylibdir"), "rss.rb") + path = File.join(::RbConfig::CONFIG.fetch("rubylibdir"), "csv.rb") assert Gem::BUNDLED_GEMS.warning?(path, specs: {}) assert_nil Gem::BUNDLED_GEMS.warning?(path, specs: {}) end |