mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 06:40:24 +01:00
Additional comparison asserts added to test_pyerrors.py
This commit is contained in:
parent
0c83f7a607
commit
9917778093
1 changed files with 4 additions and 0 deletions
|
@ -28,8 +28,12 @@ def test_comparison():
|
|||
assert (value1 < value2) == (test_obs1 < test_obs2)
|
||||
assert (value1 >= value2) == (test_obs1 >= test_obs2)
|
||||
assert (value1 <= value2) == (test_obs1 <= test_obs2)
|
||||
assert test_obs1 >= test_obs1
|
||||
assert test_obs2 <= test_obs2
|
||||
assert test_obs1 == test_obs1
|
||||
assert test_obs2 == test_obs2
|
||||
assert test_obs1 != test_obs2
|
||||
assert test_obs2 != test_obs1
|
||||
|
||||
|
||||
def test_function_overloading():
|
||||
|
|
Loading…
Add table
Reference in a new issue