Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pytest-aioresponses

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pytest-aioresponses

py.test integration for aioresponses

  • 0.2.0
  • PyPI
  • Socket score

Maintainers
1

=================== pytest-aioresponses

.. image:: https://img.shields.io/pypi/v/pytest-aioresponses.svg :target: https://pypi.org/project/pytest-aioresponses :alt: PyPI version

.. image:: https://img.shields.io/pypi/pyversions/pytest-aioresponses.svg :target: https://pypi.org/project/pytest-aioresponses :alt: Python versions

An integration of aioresponses_ for py.test_ similar to pytest-responses_


Installation

You can install "pytest-aioresponses" via pip_ from PyPI_::

$ pip install pytest-aioresponses

Usage

.. sourcecode:: python

import aiohttp
import pytest

@pytest.mark.asyncio
async def test_something(aioresponses):
    aioresponses.get("https://hello.aio")

    async with aiohttp.ClientSession() as session:
        async with session.get("https://hello.aio") as response:
            assert response.status == 200

Contributing

Contributions are very welcome.

License

Distributed under the terms of the MIT_ license, "pytest-aioresponses" is free and open source software

Issues

If you encounter any problems, please file an issue_ along with a detailed description.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _@hackebrot: https://github.com/hackebrot .. _MIT: http://opensource.org/licenses/MIT .. _BSD-3: http://opensource.org/licenses/BSD-3-Clause .. _GNU GPL v3.0: http://www.gnu.org/licenses/gpl-3.0.txt .. _Apache Software License 2.0: http://www.apache.org/licenses/LICENSE-2.0 .. _cookiecutter-pytest-plugin: https://github.com/pytest-dev/cookiecutter-pytest-plugin .. _file an issue: https://github.com/pheanex/pytest-aioresponses/issues .. _pytest: https://github.com/pytest-dev/pytest .. _tox: https://tox.readthedocs.io/en/latest/ .. _pip: https://pypi.org/project/pip/ .. _PyPI: https://pypi.org/project/pytest-aioresponses/ .. _aioresponses: https://pypi.org/project/aioresponses/ .. _pytest-responses: https://pypi.org/project/pytest-responses/ .. _py.test: https://pypi.org/project/pytest/

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc