Skip to content

Commit

Permalink
add common calculator functionality that can be tested #21, also incl…
Browse files Browse the repository at this point in the history
…ude reuse identifier
  • Loading branch information
jh-RLI committed Aug 16, 2023
1 parent ab06394 commit 08740b0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions super_repo/example_calculator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-

""" Example implementation of test for the calculater functionality to demonstrate TDD.
SPDX-FileCopyrightText: 2023 Jonas Huber <@jh-RLI>
SPDX-FileCopyrightText: © Reiner Lemoine Institut
SPDX-License-Identifier: MIT
"""

def add(a, b):
return a + b

def subtract(a, b):
return a - b

def multiply(a, b):
return a * b

def divide(a, b):
if b == 0:
raise ValueError("Cannot divide by zero")
return a / b

0 comments on commit 08740b0

Please sign in to comment.