Fix case-insensitive match scenario; test some word ornamentation. #164.
This commit is contained in:
		
							parent
							
								
									603cf02b70
								
							
						
					
					
						commit
						9f609bc94e
					
				@ -51,7 +51,13 @@ RSpec.describe KeywordMute, type: :model do
 | 
				
			|||||||
      it 'matches if at least one keyword case-insensitively matches the text' do
 | 
					      it 'matches if at least one keyword case-insensitively matches the text' do
 | 
				
			||||||
        KeywordMute.create!(account: alice, keyword: 'hot')
 | 
					        KeywordMute.create!(account: alice, keyword: 'hot')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        expect(matcher =~ 'This is a hot take').to be_truthy
 | 
					        expect(matcher =~ 'This is a HOT take').to be_truthy
 | 
				
			||||||
 | 
					      end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      it 'matches keywords surrounded by non-alphanumeric ornamentation' do
 | 
				
			||||||
 | 
					        KeywordMute.create!(account: alice, keyword: 'hot')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        expect(matcher =~ 'This is a ~*HOT*~ take').to be_truthy
 | 
				
			||||||
      end
 | 
					      end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      it 'uses case-folding rules appropriate for more than just English' do
 | 
					      it 'uses case-folding rules appropriate for more than just English' do
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user