2020-09-29 03:18:41 +02:00
|
|
|
# This entrypoint file to be used in development. Start by reading README.md
|
2021-08-26 09:08:31 +02:00
|
|
|
from pytest import main
|
|
|
|
|
2020-09-29 03:18:41 +02:00
|
|
|
from arithmetic_arranger import arithmetic_arranger
|
|
|
|
|
|
|
|
|
|
|
|
print(arithmetic_arranger(["32 + 698", "3801 - 2", "45 + 43", "123 + 49"]))
|
|
|
|
|
|
|
|
|
|
|
|
# Run unit tests automatically
|
2022-06-19 17:32:48 +02:00
|
|
|
main(['-vv'])
|