diff options
| author | Bobby <[email protected]> | 2022-08-30 18:42:52 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-08-30 18:42:52 -0400 |
| commit | d1c69698c7aa90b901e7c215c91de2a9874bbc27 (patch) | |
| tree | 2f7fd84abf4129ccd4610be6bed454d4e6dd98e3 | |
| parent | 2569f9e06c5a121b534420bea92816c7278256e3 (diff) | |
| download | edify-d1c69698c7aa90b901e7c215c91de2a9874bbc27.tar.xz edify-d1c69698c7aa90b901e7c215c91de2a9874bbc27.zip | |
Fixing Tests
| -rw-r--r-- | src/edify/__main__.py | 1 | ||||
| -rw-r--r-- | tests/test_edify.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/edify/__main__.py b/src/edify/__main__.py index 3976818..b6f5783 100644 --- a/src/edify/__main__.py +++ b/src/edify/__main__.py @@ -3,5 +3,6 @@ def main(): pass + if __name__ == '__main__': main() diff --git a/tests/test_edify.py b/tests/test_edify.py index f6d58b1..66af90a 100644 --- a/tests/test_edify.py +++ b/tests/test_edify.py @@ -3,4 +3,5 @@ from edify import __main__ def test_main(): - assert __main__.main() == None + if __main__.main() is None: + assert True |
