Skip to content

Commit

Permalink
simple test for number one
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoFF committed Jun 4, 2024
1 parent 370b239 commit fc2e28d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fizzbuzz.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

def process(n):
return 1

for number in range(1,101):
print(process(number))
4 changes: 4 additions & 0 deletions test_simple.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from fizzbuzz import process

def test_number_one():
assert process(1) == 1

0 comments on commit fc2e28d

Please sign in to comment.