aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-03-09 13:09:08 -0700
committerGravatar MarkKoz <[email protected]>2020-03-09 13:10:41 -0700
commit60814ee9270d4c550047478bf8d4a179d7351696 (patch)
tree7155680bdea877700d79837e15d81013aaf07d82 /tests
parentMerge pull request #822 from python-discord/bug/mod/792/null-attachments (diff)
Cog tests: create boilerplate for command name tests
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/cogs/test_cogs.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bot/cogs/test_cogs.py b/tests/bot/cogs/test_cogs.py
new file mode 100644
index 000000000..6f5d07030
--- /dev/null
+++ b/tests/bot/cogs/test_cogs.py
@@ -0,0 +1,7 @@
+"""Test suite for general tests which apply to all cogs."""
+
+import unittest
+
+
+class CommandNameTests(unittest.TestCase):
+ """Tests for shadowing command names and aliases."""