diff --git a/.results.json b/.results.json new file mode 100644 index 0000000..003e2c7 --- /dev/null +++ b/.results.json @@ -0,0 +1 @@ +{"stats": {"passes": 1, "skipped": 0, "encoding": "UTF-8", "errors": 0, "failures": 0, "total": 1}, "results": [{"classname": "tests.test_solution:TestSolution", "type": "success", "name": "test_solution", "time": 0.00010585784912109375}]} \ No newline at end of file diff --git a/practice.py b/practice.py index e69de29..9a94d3b 100644 --- a/practice.py +++ b/practice.py @@ -0,0 +1,7 @@ +def f(a, b): + total = a + b + product = a * b + division = a/b +print 'Sum is ', total +print 'Product is ', product +print 'Division is ', division diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..f96c127 Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_solution.pyc b/tests/test_solution.pyc new file mode 100644 index 0000000..a58035a Binary files /dev/null and b/tests/test_solution.pyc differ