Metadata-Version: 2.4
Name: reahl-stubble
Version: 7.0.4
Summary: Stub tools for use in unit testing
Author-email: Iwan Vosloo <iwan@reahl.org>, Craig Sparks <craig@reahl.org>
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: setuptools>=51.0.0
Provides-Extra: test
Requires-Dist: pytest>=3.0; extra == "test"
Requires-Dist: reahl-dev; extra == "test"
Dynamic: license-file

 Reahl is a web application framework that allows a Python programmer to work in 
 terms of useful abstractions - using a single programming language.

 Stubble (a part of the Reahl development tools) is a collection of
 tools for writing stubs in unit tests. Stubble can be used independently
 of the Reahl web framework.

 Using stubs allows one to decouple one unit test from real code 
 unrelated to it - you write a fake class to take the place of 
 a real one (which this test is not testing).

 Stubble ensures, however, that the test will break should the
 interface of the stub differ from that of the real class it is a stub
 for.
