Software Alternatives & Reviews

An Introduction to Testing with Django for Python

unittest pytest
  1. Testing Frameworks
    Unittest is Python's built-in testing framework. Django extends it with some of its own functionality.

    #Automated Testing #Testing #Online Services 60 social mentions

  2. 2
    Javascript Testing Framework
    Pytest is an excellent alternative to unittest. Even though it doesn't come built-in to Python itself, it is considered more pythonic than unittest. It doesn't require a TestClass, has less boilerplate code, and has a plain assert statement. Pytest has a rich plugin ecosystem, including a specific Django plugin, pytest-django.

    #Automated Testing #Testing #Online Services 5 social mentions

Discuss: An Introduction to Testing with Django for Python

Log in or Post with