Skip to content

Commit

Permalink
format document #21
Browse files Browse the repository at this point in the history
  • Loading branch information
jh-RLI committed Aug 16, 2023
1 parent 757bc11 commit b56fc59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,22 @@

from super_repo.example_calculator import add, subtract, multiply, divide


def test_addition():
result = add(3, 4)
assert result == 7


def test_subtraction():
result = subtract(10, 5)
assert result == 5


def test_multiplication():
result = multiply(2, 6)
assert result == 12


def test_division():
result = divide(15, 3)
assert result == 5

0 comments on commit b56fc59

Please sign in to comment.