mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-23 21:53:35 +00:00
4f3b020f5d
Add some tests and improve others to raise coverage percentage. This should lead to almost 100% for the AbuseFilterParser class. Aside from this, a couple of changes: * Remove an unused function * Let equals_to_any return a genuine result with empty strings * Remove an if which will never be true in skipOverBraces, since the function is called after checking the same conditions. Bug: T201193 Change-Id: I7020b2ed996236c38c5784d161ad98ec44163406
4 lines
184 B
Raku
4 lines
184 B
Raku
equals_to_any( "foo", "bar", "foo", "pizza" ) &
|
|
equals_to_any( 15, 3, 77, 18, 15 ) &
|
|
equals_to_any( "", 3, 77, 18, 15, "duh" ) === false &
|
|
equals_to_any( "", 3, 77, 18, 15, "duh", "" ) |