From 00bdac18cffce3fb74aa596c828a09e7d52affcd Mon Sep 17 00:00:00 2001 From: bronzdoc Date: Tue, 28 Jul 2020 22:15:09 -0600 Subject: [rubygems/rubygems] Warn on duplicate dependency in a specification https://github.com/rubygems/rubygems/commit/af3e5f7883 --- test/rubygems/test_gem_specification.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/rubygems') diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb index c4da82373a..cd00f74c93 100644 --- a/test/rubygems/test_gem_specification.rb +++ b/test/rubygems/test_gem_specification.rb @@ -3051,6 +3051,13 @@ Please report a bug if this causes problems. end end + def test_duplicate_runtime_dependency + expected = "WARNING: duplicate dependency [\"~> 3.0\", \"~> 3.0\"]\n" + assert_output nil, expected do + @a1.add_runtime_dependency "b", "~> 3.0", "~> 3.0" + end + end + def set_orig(cls) s_cls = cls.singleton_class s_cls.send :alias_method, :orig_unresolved_deps , :unresolved_deps -- cgit v1.2.3