generated from rochacbruno/python-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
test
committed
Jun 14, 2024
1 parent
af84b5b
commit 67e2edc
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |