We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 587662b commit 03a8b73Copy full SHA for 03a8b73
3 files changed
.gitignore
@@ -26,6 +26,8 @@ share/python-wheels/
26
.installed.cfg
27
*.egg
28
MANIFEST
29
+coverage.xml
30
+.coverage
31
32
# PyInstaller
33
# Usually these files are written by a python script from a template
tests/__init__.py
@@ -1,5 +0,0 @@
1
-import awesome
2
-
3
4
-def test_something():
5
- assert awesome.smile() == 1
tests/test_number_two.py
@@ -0,0 +1,10 @@
+import awesome
+from awesome.code_fib import fib
+
+def test_something():
6
+ assert awesome.smile() == ':)'
7
8
9
+def test_a():
10
+ assert fib(2) == 0
0 commit comments