aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py (unfollow)
Commit message (Collapse)AuthorLines
2020-09-21Accommodate new upload behaviour in testsGravatar Numerlor-2/+2
2020-09-21Upload output with codeblock escapes to pastebinGravatar Numerlor-0/+1
The output can't be sent to discord, but it won't affect anything in the paste service and can safely be uploaded to it.
2020-09-21Fix import order of mod utils testsGravatar ks129-1/+1
2020-09-21Fix import path of mod utilsGravatar ks129-1/+1
2020-09-21Fix end of file of mod utils testsGravatar ks129-1/+1
2020-09-20Apply recent changes of notify infraction to testGravatar ks129-3/+2
2020-09-20Try to fix location from where post infraction test get IDGravatar ks129-2/+2
2020-09-20Remove useless textwrap importGravatar ks129-1/+0
2020-09-20Remove special shortening from reasonGravatar ks129-1/+1
2020-09-16remove random space in `upvotes` valueGravatar Senjan21-1/+1
2020-09-16update the reddit emojis to actual emojis'Gravatar Senjan21-3/+3
2020-09-16Updating names of reddit emotes.Gravatar Senjan21-3/+4
2020-09-13Shorten infraction text when any other field than reason is too longGravatar ks129-0/+4
2020-09-11Verification: update & improve docstringsGravatar kwzrd-12/+11
After moving constants to config, the docstring references were not updated accordingly, and remained uppercase. This commit also removed the redundant list indentation.
2020-09-10Verification: move constants to configGravatar kwzrd-25/+43
2020-09-08Fix cog_check testsGravatar MarkKoz-8/+12
2020-09-08Fix tests for has_any_role_checkGravatar MarkKoz-16/+18
2020-09-08Rename role checks and decoratorsGravatar MarkKoz-33/+33
Make their names more in line with `has_any_role` for consistency.
2020-09-08Add everyone_ping filter.Gravatar kosayoda-11/+47
2020-09-07Implement role checks using has_any_roleGravatar MarkKoz-34/+35
Use `has_any_role` to reduce redundancy. Because discord.py always makes a check's predicate a coroutine, the checks now have to be awaited.
2020-09-07Remove everyone_ping rule from antispam.Gravatar kosayoda-152/+0
The feature will be moved to the filtering cog.
2020-09-06Use has_any_role's predicate directlyGravatar MarkKoz-31/+24
In some places, it's more appropriate than using with_role_check since it will raise CheckFailures. This applies to `cog_check`s and other things which effectively act as command checks.
2020-09-06Implement the without_role decorator by negating has_any_roleGravatar MarkKoz-6/+17
2020-09-05Remove with_role decorator in favour of has_any_roleGravatar MarkKoz-76/+58
`with_role` is obsolete because discord.py provides `has_any_role`.
2020-09-05Disable everyone_ping filter in AntiSpam cogGravatar Sebastiaan Zeeff-4/+8
As there are a few bugs in the implementation, I've temporarily disabled the at-everyone ping filter in the AntiSpam cog. We can disable it after we've fixed the bugs. Signed-off-by: Sebastiaan Zeeff <[email protected]>