Metadata-Version: 2.1
Name: mango-test-framework
Version: 0.1.0
Summary: A simple testing framework in Python.
Home-page: https://github.com/najasnake12/mango-test
Author: Scott
Author-email: pessiartist@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
Requires-Dist: mango-test-framework >=0.1.0

# Mango Test
A simple testing framework in python.

HOW TO USE:
Firstly enter the command in your terminal: pip install mango_test_framework
after that go to your python code and type: from mango_test_framework import mangostart, mangoend, summary
This imports the package.
Then you need to wrap the code you want to test inside mangostart() and mangoend()

This is an example:
mangostart()
code = """
x = 1
y = 1
assert x + y == 2
"""
mangoend(code)

*Note that you need to add the variable you have the code you want to test as an argument inside mangoend()*

ENJOY!
