about summary refs log tree commit diff
path: root/spec/models/glitch
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-12-03 21:49:55 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-02-10 10:36:15 -0600
commit53c86b29f05049d77d17a35a0ca6287174431783 (patch)
treef2fbf88d4e16cd40da7eed04fc4e7f67dfe9ae9d /spec/models/glitch
parentd263e3bc2de720f4e6749cf4a8f2074427b65d07 (diff)
Glitch::FilterHelper -> Glitch::KeywordMuteHelper. #234.
The class helps out with keyword mutes, not just some general concept of
"filtering".
Diffstat (limited to 'spec/models/glitch')
-rw-r--r--spec/models/glitch/keyword_mute_helper_spec.rb (renamed from spec/models/glitch/filter_helper_spec.rb)4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/glitch/filter_helper_spec.rb b/spec/models/glitch/keyword_mute_helper_spec.rb
index 9a808667d..9d09e58da 100644
--- a/spec/models/glitch/filter_helper_spec.rb
+++ b/spec/models/glitch/keyword_mute_helper_spec.rb
@@ -1,9 +1,9 @@
 require 'rails_helper'
 
-RSpec.describe Glitch::FilterHelper do
+RSpec.describe Glitch::KeywordMuteHelper do
   describe '#matches?' do
     let(:alice) { Fabricate(:account, username: 'alice').tap(&:save!) }
-    let(:helper) { Glitch::FilterHelper.new(alice) }
+    let(:helper) { Glitch::KeywordMuteHelper.new(alice) }
 
     it 'ignores names of HTML tags in status text' do
       status = Fabricate(:status, text: '<addr>uh example</addr>')