This is a simple calculator demo program for demonstrating BDD Testing.
$ git clone https://github.com/hmurari/simple-calc-bdd.git
$ python calc.py 5 + 8
13
$ python calc.py 5*3 + 3
18
$ python calc.py 15/3+5
10
This is just a demo application to demonstrate BDD Testing concepts. You can read more about the BDD Testing concepts, you can refer to this article on Medium: BDD Quickstart with Python