aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/test_gem_specification.rb7
1 files changed, 7 insertions, 0 deletions
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