Skip to content

Commit 67e2edc

Browse files
author
test
committed
Fixed test error.
1 parent af84b5b commit 67e2edc

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

doc_generator/base.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"""
2+
doc_generator base module.
3+
4+
This is the principal module of the doc_generator project.
5+
here you put your main classes and objects.
6+
7+
Be creative! do whatever you want!
8+
9+
If you want to replace this with a Flask application run:
10+
11+
$ make init
12+
13+
and then choose `flask` as template.
14+
"""
15+
16+
# example constant variable
17+
NAME = "doc_generator"

tests/test_base.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from doc_generator.base import NAME
2+
3+
4+
def test_base():
5+
assert NAME == "doc_generator"

0 commit comments

Comments
 (0)