-
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
Lorena Mesa
committed
Jul 17, 2024
1 parent
eacb262
commit f91640e
Showing
1 changed file
with
3 additions
and
2 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 |
---|---|---|
|
@@ -28,13 +28,14 @@ def test_fails_to_create_identicon_with_input_text_missing(self): | |
error_received = subprocess.check_output(f'python3 {PROJECT_ROOT}/main.py', shell=True, stderr=subprocess.STDOUT).strip() | ||
self.assertIn(context.exception.message, "main.py: error: the following arguments are required: -s/--string") | ||
|
||
def generates_ | ||
def test_creates_identicon_when_input_text_provided(self): | ||
pass | ||
|
||
|
||
# hash_str =convert_string_to_sha_hash("931D387731bBbC988B31220") | ||
# hash_str = convert_string_to_sha_hash("[email protected]") | ||
# grid = build_grid(hash_str) | ||
# draw_image(grid, hash_str) | ||
|
||
if __name__ == '__maipython -m unittestn__': | ||
if __name__ == '__maipython -m unittest__': | ||
unittest.main() |