mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 19:43:41 +02:00
test: tests for exceptional cases extended
This commit is contained in:
parent
fa7702a4ad
commit
a7363fb88e
2 changed files with 43 additions and 0 deletions
|
@ -62,6 +62,9 @@ def test_covobs_name_collision():
|
|||
my_obs = pe.pseudo_Obs(2.3, 0.2, 'test')
|
||||
with pytest.raises(Exception):
|
||||
summed_obs = my_obs + covobs
|
||||
covobs2 = pe.cov_Obs(0.3, 0.001, 'test')
|
||||
with pytest.raises(Exception):
|
||||
summed_obs = covobs + covobs2
|
||||
|
||||
|
||||
def test_covobs_replica_separator():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue