Socket
Socket
Sign inDemoInstall

mo-testing

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mo-testing

More Testing! Extends the `unittest.TestCase` to provide deep, yet fuzzy, structural comparisons


Maintainers
1

Readme

More Testing

PyPI Latest Release Build Status Coverage Status Downloads

FuzzyTestCase extends the unittest.TestCase to provide deep, yet fuzzy, structural comparisons; intended for use in test cases dealing with JSON.

Details

The primary method is the assertAlmostEqual method with the following arguments:

  • test_value - the value, or structure being tested
  • expected - the expected value or structure. In the case of a number, the accuracy is controlled by the following parameters. In the case of a structure, only the not-null parameters of expected are tested for existence.
  • msg - Detailed error message if there is no match

Keyword arguments:

  • digits - number of decimal places of accuracy required to consider two values equal
  • places - number of significant digits used to compare values for accuracy
  • delta - maximum difference between values for them to be equal

This method assertEqual is recursive; it does a deep comparison; it can not handle cycles in the data structure.

Major Changes

Version 8

  • digits, places, and delta must be specified as keyword arguments

FAQs


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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc