├── .github ├── ISSUE_TEMPLATE │ └── feature-request.md ├── dependabot.yml └── workflows │ ├── lint-ci.yml │ ├── python-release.yml │ └── test-ci.yml ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── .vscode ├── extensions.json └── settings.json ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── discord └── ext │ └── test │ ├── __init__.py │ ├── _types.py │ ├── backend.py │ ├── callbacks.py │ ├── factories.py │ ├── runner.py │ ├── state.py │ ├── utils.py │ ├── verify.py │ ├── voice.py │ └── websocket.py ├── docs ├── Makefile ├── _static │ └── css │ │ └── spacing.css ├── conf.py ├── index.rst ├── make.bat ├── modules │ ├── backend.rst │ ├── callbacks.rst │ ├── factories.rst │ ├── index.rst │ ├── runner.rst │ ├── state.rst │ ├── utils.rst │ ├── verify.rst │ └── websocket.rst └── tutorials │ ├── getting_started.rst │ ├── index.rst │ └── using_pytest.rst ├── pyproject.toml ├── release-requirements.txt ├── setup.cfg ├── tasks.py └── tests ├── __init__.py ├── conftest.py ├── data ├── loremimpsum.txt └── unit-tests.jpg ├── internal ├── __init__.py └── cogs │ ├── __init__.py │ ├── echo.py │ └── greeting.py ├── test_activity.py ├── test_configure.py ├── test_create_channel.py ├── test_dmchannel.py ├── test_edit.py ├── test_fetch_message.py ├── test_get.py ├── test_get_channel_history.py ├── test_member_join.py ├── test_mentions.py ├── test_message.py ├── test_permissions.py ├── test_reactions.py ├── test_role.py ├── test_send.py ├── test_utils.py ├── test_verify_embed.py ├── test_verify_file.py ├── test_verify_message.py └── test_voice.py /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.github/workflows/lint-ci.yml -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.github/workflows/test-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.github/workflows/test-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /discord/ext/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/__init__.py -------------------------------------------------------------------------------- /discord/ext/test/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/_types.py -------------------------------------------------------------------------------- /discord/ext/test/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/backend.py -------------------------------------------------------------------------------- /discord/ext/test/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/callbacks.py -------------------------------------------------------------------------------- /discord/ext/test/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/factories.py -------------------------------------------------------------------------------- /discord/ext/test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/runner.py -------------------------------------------------------------------------------- /discord/ext/test/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/state.py -------------------------------------------------------------------------------- /discord/ext/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/utils.py -------------------------------------------------------------------------------- /discord/ext/test/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/verify.py -------------------------------------------------------------------------------- /discord/ext/test/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/voice.py -------------------------------------------------------------------------------- /discord/ext/test/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/discord/ext/test/websocket.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/spacing.css: -------------------------------------------------------------------------------- 1 | .function, .method { 2 | margin-bottom: 40px; 3 | } -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules/backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/backend.rst -------------------------------------------------------------------------------- /docs/modules/callbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/callbacks.rst -------------------------------------------------------------------------------- /docs/modules/factories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/factories.rst -------------------------------------------------------------------------------- /docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/index.rst -------------------------------------------------------------------------------- /docs/modules/runner.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/runner.rst -------------------------------------------------------------------------------- /docs/modules/state.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/state.rst -------------------------------------------------------------------------------- /docs/modules/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/utils.rst -------------------------------------------------------------------------------- /docs/modules/verify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/verify.rst -------------------------------------------------------------------------------- /docs/modules/websocket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/modules/websocket.rst -------------------------------------------------------------------------------- /docs/tutorials/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/tutorials/getting_started.rst -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/tutorials/using_pytest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/docs/tutorials/using_pytest.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-requirements.txt: -------------------------------------------------------------------------------- 1 | -r 'dev-requirements.txt' 2 | bump2version 3 | build 4 | twine 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/setup.cfg -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/loremimpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/data/loremimpsum.txt -------------------------------------------------------------------------------- /tests/data/unit-tests.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/data/unit-tests.jpg -------------------------------------------------------------------------------- /tests/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/internal/cogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/internal/cogs/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/internal/cogs/echo.py -------------------------------------------------------------------------------- /tests/internal/cogs/greeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/internal/cogs/greeting.py -------------------------------------------------------------------------------- /tests/test_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_activity.py -------------------------------------------------------------------------------- /tests/test_configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_configure.py -------------------------------------------------------------------------------- /tests/test_create_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_create_channel.py -------------------------------------------------------------------------------- /tests/test_dmchannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_dmchannel.py -------------------------------------------------------------------------------- /tests/test_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_edit.py -------------------------------------------------------------------------------- /tests/test_fetch_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_fetch_message.py -------------------------------------------------------------------------------- /tests/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_get.py -------------------------------------------------------------------------------- /tests/test_get_channel_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_get_channel_history.py -------------------------------------------------------------------------------- /tests/test_member_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_member_join.py -------------------------------------------------------------------------------- /tests/test_mentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_mentions.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_permissions.py -------------------------------------------------------------------------------- /tests/test_reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_reactions.py -------------------------------------------------------------------------------- /tests/test_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_role.py -------------------------------------------------------------------------------- /tests/test_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_send.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_verify_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_verify_embed.py -------------------------------------------------------------------------------- /tests/test_verify_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_verify_file.py -------------------------------------------------------------------------------- /tests/test_verify_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_verify_message.py -------------------------------------------------------------------------------- /tests/test_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftSpider/dpytest/HEAD/tests/test_voice.py --------------------------------------------------------------------------------