Skip to main content

🐑An incredible and performant framework for unit testing🐑

Project description

.. _sheepy:

Sheepy: A Simple Python Unit Testing Framework

====================================================

Introduction

Sheepy is a lightweight unit testing framework designed for Python developers who value simplicity and ease of use. It provides a core set of components to write unit tests and generate basic test reports.

...

Installation

To install Sheepy, simply:

   pip install sheepy

Usage

Here's a basic example of how to use Sheepy:

from sheepy.sheeptest import SheepyTestCase

class ExampleTest(SheepyTestCase):
    def test_success(self):
        self.assertTrue(True)

    def test_failure(self):
        self.assertEqual(1, 2)

    def test_error(self):
        raise Exception("Forced error")

    @SheepyTestCase.skip("Reason to ignore")
    def test_skipped(self):
        pass

    @SheepyTestCase.expectedFailure
    def test_expected_failure(self):
        self.assertEqual(1, 2)


suite = TestSuite([ExampleTest])
runner = TestRunner(suite)
runner.run()

Customization

Sheepy allows for customization in several ways:

  • Logging: ...
  • Reporting: ...
  • Test discovery: ...

... (continue with customization options)

API Reference

.. automodule:: sheepy :members: :undoc-members: :show-inheritance:

Indices and tables

  • :ref:genindex
  • :ref:modindex
  • :ref:search

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sheepy-0.0.4.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

sheepy-0.0.4-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page