aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-08-30 18:17:40 -0400
committerBobby <[email protected]>2022-08-30 18:17:40 -0400
commit8a6d2ea25b9b14ee98714dd1a138c6a1701224b4 (patch)
treedbb5a39546012b24250ba205525cbf0ce860e319
parentb2026facd54d94c2145c48eeaac779672b0d9e80 (diff)
downloadedify-8a6d2ea25b9b14ee98714dd1a138c6a1701224b4.tar.xz
edify-8a6d2ea25b9b14ee98714dd1a138c6a1701224b4.zip
Added Initial Test
-rw-r--r--src/edify/__main__.py7
-rw-r--r--tests/test_edify.py4
2 files changed, 9 insertions, 2 deletions
diff --git a/src/edify/__main__.py b/src/edify/__main__.py
new file mode 100644
index 0000000..3976818
--- /dev/null
+++ b/src/edify/__main__.py
@@ -0,0 +1,7 @@
+# Edify Package
+
+def main():
+ pass
+
+if __name__ == '__main__':
+ main()
diff --git a/tests/test_edify.py b/tests/test_edify.py
index 0aea1ab..f6d58b1 100644
--- a/tests/test_edify.py
+++ b/tests/test_edify.py
@@ -1,6 +1,6 @@
-from edify import main
+from edify import __main__
def test_main():
- pass
+ assert __main__.main() == None