Skip to content

Commit

Permalink
Add tests for non bool value types
Browse files Browse the repository at this point in the history
  • Loading branch information
viktormelker committed Oct 9, 2024
1 parent 0975373 commit de680ea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"value, message, expected_result",
[
(True, "Success", True),
("aaa", "Success", True),
(2, "Success", True),
(False, None, False),
(None, None, False),
(False, "Failure", False),
],
)
Expand Down

0 comments on commit de680ea

Please sign in to comment.