Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
.. image:: https://img.shields.io/pypi/v/expects.svg :target: https://pypi.python.org/pypi/expects :alt: Latest version
.. image:: https://img.shields.io/badge/Docs-latest-brightgreen.svg :target: http://expects.readthedocs.io/en/latest :alt: Docs
.. image:: https://img.shields.io/badge/Licence-Apache2-brightgreen.svg :target: https://www.tldrlegal.com/l/apache2 :alt: License
.. image:: https://secure.travis-ci.org/jaimegildesagredo/expects.svg?branch=master :target: http://travis-ci.org/jaimegildesagredo/expects :alt: Build status
.. image:: https://img.shields.io/pypi/pyversions/expects.svg :target: https://pypi.python.org/pypi/expects :alt: PyPI versions
Expects is an expressive and extensible TDD/BDD assertion library for Python. Expects can be extended by defining new matchers <http://expects.readthedocs.io/en/latest/custom-matchers.html>
_.
Just import the expect
callable and the built-in matchers <http://expects.readthedocs.io/en/latest/matchers.html>
_ and start writing test assertions.
.. code-block:: python
from expects import *
expect([]).to(be_empty)
expect(False).not_to(be_true)
expect({
'name': 'Jack',
'email': 'jack@example.com'
}).to(have_key('name', match('\w+')))
expect(str).to(have_property('split') & be_callable)
expect(lambda: foo).to(raise_error(NameError))
expect('Foo').to(equal('Bar') | equal('Foo'))
You can install the last stable release of Expects from PyPI using pip or easy_install.
.. code-block:: bash
$ pip install expects
Also you can install the latest sources from Github.
.. code-block:: bash
$ pip install -e git+git://github.com/jaimegildesagredo/expects.git#egg=expects
To run the Expects specs you should install the development requirements and then run mamba
.
.. code-block:: bash
$ pip install -r test-requirements.txt
$ mamba
See Changes <https://expects.readthedocs.io/en/latest/changes.html>
_.
See 3rd-Party Matchers list <http://expects.readthedocs.io/en/latest/3rd-party-matchers.html>
_.
FAQs
Expressive and extensible TDD/BDD assertion library for Python
We found that expects demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.