- Joined
- Aug 17, 2024
- Messages
- 10
- Reaction score
- 0
Yall please don't hate but I published a really simple testing framework.
It's really simple to use but it helped me fix an error I have been stuck on
If yall want try it out: pip install mango_test_framework
Here's how to use it:
It's really simple to use but it helped me fix an error I have been stuck on
If yall want try it out: pip install mango_test_framework
Here's how to use it:
Python:
from mango_test_framework import mangostart, mangoend, summary
mangostart()
code = """
PUT THE CODE YOU WANT TO TEST HERE
"""
mangoend(code)
summary()