aboutsummaryrefslogtreecommitdiffstats
path: root/test/rubygems/test_gem_specification.rb
diff options
context:
space:
mode:
authorEllen Marie Dash <me@duckie.co>2021-08-13 15:59:46 -0400
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-22 10:13:49 +0900
commitcd2e6318f6502018d398cb9706a286ef5b202bf4 (patch)
tree0d2859b54c86f9bfe040d7d6d5bd0a319f55f14c /test/rubygems/test_gem_specification.rb
parenteaeb5bf0bcf42d43b3118e0586508a5d78cfa5c7 (diff)
downloadruby-cd2e6318f6502018d398cb9706a286ef5b202bf4.tar.gz
[rubygems/rubygems] Only check if descriptions *start with* FIXME/TODO
It doesn't make much sense to just forbid certain words in descriptions. https://github.com/rubygems/rubygems/commit/7890c98415
Diffstat (limited to 'test/rubygems/test_gem_specification.rb')
-rw-r--r--test/rubygems/test_gem_specification.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/rubygems/test_gem_specification.rb b/test/rubygems/test_gem_specification.rb
index 88afa3faa0..782ae0380f 100644
--- a/test/rubygems/test_gem_specification.rb
+++ b/test/rubygems/test_gem_specification.rb
@@ -2781,6 +2781,20 @@ duplicate dependency on c (>= 1.2.3, development), (~> 1.2) use:
end
assert_equal %("#{f}" or "#{t}" is not a description), e.message
+
+ # Adding #{f} anywhere after the start of the description should be fine.
+ @a1.description = "(some description) #{f}"
+
+ assert_nothing_raised do
+ @a1.validate
+ end
+
+ # Adding #{t} anywhere after the start of the description should be fine.
+ @a1.description = "(some description) #{t}"
+
+ assert_nothing_raised do
+ @a1.validate
+ end
end
end