about summary refs log tree commit diff
path: root/spec/models/tag_spec.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-07-19 23:22:35 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-07-19 23:22:35 +0200
commitc37c1da41e1c490771a409ad1b12f3db55af4cee (patch)
tree103234f723d103e3b3d50df912d2803f8f36721a /spec/models/tag_spec.rb
parent650459f93c6b599c1041ff87f8a78da7fb05cb9d (diff)
Disallow numeric-only hashtags (#11363)
* Add spec covering numeric-only hashtags

* Fix hashtag regex
Diffstat (limited to 'spec/models/tag_spec.rb')
-rw-r--r--spec/models/tag_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/models/tag_spec.rb b/spec/models/tag_spec.rb
index 161862392..9a30ceaa5 100644
--- a/spec/models/tag_spec.rb
+++ b/spec/models/tag_spec.rb
@@ -69,6 +69,10 @@ RSpec.describe Tag, type: :model do
     it 'does not match middle dots at the end' do
       expect(subject.match('hello #one·two·three·').to_s).to eq ' #one·two·three'
     end
+
+    it 'does not match purely-numeric hashtags' do
+      expect(subject.match('hello #0123456')).to be_nil
+    end
   end
 
   describe '#to_param' do