Skip to content

Commit

Permalink
Fixed test error.
Browse files Browse the repository at this point in the history
  • Loading branch information
test committed Jun 14, 2024
1 parent af84b5b commit 67e2edc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions doc_generator/base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""
doc_generator base module.
This is the principal module of the doc_generator project.
here you put your main classes and objects.
Be creative! do whatever you want!
If you want to replace this with a Flask application run:
$ make init
and then choose `flask` as template.
"""

# example constant variable
NAME = "doc_generator"
5 changes: 5 additions & 0 deletions tests/test_base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from doc_generator.base import NAME


def test_base():
assert NAME == "doc_generator"

0 comments on commit 67e2edc

Please sign in to comment.