diff options
| author | Bobby <[email protected]> | 2022-08-30 19:56:26 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-08-30 19:56:26 -0400 |
| commit | 93377ec71c4c31c8edeae09ac5a00df7eeed1970 (patch) | |
| tree | f9e033dfd56deb9dc318a8129828c4931c7e7c32 /tests | |
| parent | b142853ae4c8443d02baa230ffae823feac83abd (diff) | |
| download | edify-93377ec71c4c31c8edeae09ac5a00df7eeed1970.tar.xz edify-93377ec71c4c31c8edeae09ac5a00df7eeed1970.zip | |
Covering all code
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_edify.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_edify.py b/tests/test_edify.py index 782c347..7dcadb9 100644 --- a/tests/test_edify.py +++ b/tests/test_edify.py @@ -1,7 +1,4 @@ - -from edify import main - +from edify.main import main def test_main(): - if main.main() is None: - assert True + assert main() == 0 |
