summaryrefslogtreecommitdiff
path: root/app/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/tests.py')
-rw-r--r--app/tests.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/tests.py b/app/tests.py
new file mode 100644
index 0000000..3c8dd57
--- /dev/null
+++ b/app/tests.py
@@ -0,0 +1,11 @@
+"""Mock test to test pytest."""
+
+
+def inc(number: int) -> int:
+ """Mock test to test pytest."""
+ return number + 1
+
+
+def test_answer() -> None:
+ """Mock test to test pytest."""
+ assert inc(3) == 4